<!--
{
  "availability" : [
    "iOS: 5.0.0 -",
    "iPadOS: 5.0.0 -",
    "macCatalyst: 13.1.0 -",
    "macOS: 10.7.0 -",
    "visionOS: 1.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "GSS",
  "identifier" : "/documentation/GSS/gss_wrap(_:_:_:_:_:_:_:)",
  "metadataVersion" : "0.1.0",
  "role" : "Function",
  "symbol" : {
    "kind" : "Function",
    "modules" : [
      "GSS"
    ],
    "preciseIdentifier" : "c:@F@gss_wrap"
  },
  "title" : "gss_wrap(_:_:_:_:_:_:_:)"
}
-->

# gss_wrap(_:_:_:_:_:_:_:)

Returns a secure message created by calculating and attaching a MIC to the input message, and then optionally encrypting it.

```
func gss_wrap(_ minor_status: UnsafeMutablePointer<OM_uint32>, _ context_handle: gss_ctx_id_t, _ conf_req_flag: Int32, _ qop_req: gss_qop_t, _ input_message_buffer: gss_buffer_t, _ conf_state: UnsafeMutablePointer<Int32>?, _ output_message_buffer: gss_buffer_t) -> OM_uint32
```

## Parameters

`minor_status`

A pointer to the secondary status result that provides additional information in case of failure.

`context_handle`

The context used to send the message.

`conf_req_flag`

A flag you set to zero to request that only that the message integrity check be applied, or to anything non-zero to request both integrity checking and confidentiality (encryption) of the message.

`qop_req`

The quality of protection requested for the encryption. See Quality of Protection Constants in [Object Identifiers](/documentation/GSS/object-identifiers) for valid values.

`input_message_buffer`

A buffer containing the message to protect.

`conf_state`

A pointer the function uses to indicate what protection is actually applied to the message. A value of zero indicates only integrity checking. A non-zero value indicates both integrity checking and confidentiality. Pass `NULL` to ignore this output.

`output_message_buffer`

A buffer the function fills with the fully wrapped message, ready for transport to the peer. Release the buffer using a call to [`gss_release_buffer(_:_:)`](/documentation/GSS/gss_release_buffer(_:_:)) when you are done with it.

## Return Value

A status code set to [`GSS_S_COMPLETE`](/documentation/GSS/GSS_S_COMPLETE) on success. See [Function Status](/documentation/GSS/function-status) for a complete enumeration of status outputs.

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)