-
Notifications
You must be signed in to change notification settings - Fork 50
Support DCE IOV functions on macOS #258
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,127 @@ | ||
GSSAPI="BASE" # This ensures that a full module is generated by Cython | ||
|
||
from gssapi.raw.cython_types cimport * | ||
from gssapi.raw.sec_contexts cimport SecurityContext | ||
|
||
from gssapi.raw.misc import GSSError | ||
from gssapi.raw.named_tuples import WrapResult, UnwrapResult | ||
|
||
|
||
cdef extern from "python_gssapi_ext.h": | ||
OM_uint32 gss_wrap_aead(OM_uint32 *min_stat, gss_ctx_id_t ctx_handle, | ||
int conf_req, gss_qop_t qop_req, | ||
gss_buffer_t input_assoc_buffer, | ||
gss_buffer_t input_payload_buffer, int *conf_ret, | ||
gss_buffer_t output_message_buffer) nogil | ||
|
||
OM_uint32 gss_unwrap_aead(OM_uint32 *min_stat, gss_ctx_id_t ctx_handle, | ||
gss_buffer_t input_message_buffer, | ||
gss_buffer_t input_assoc_buffer, | ||
gss_buffer_t output_payload_buffer, | ||
int *conf_ret, gss_qop_t *qop_ret) nogil | ||
|
||
|
||
def wrap_aead(SecurityContext context not None, bytes message not None, | ||
bytes associated=None, confidential=True, qop=None): | ||
""" | ||
wrap_aead(context, message, associated=None, confidential=True, qop=None) | ||
Wrap/Encrypt an AEAD message. | ||
|
||
This method takes an input message and associated data, | ||
and outputs and AEAD message. | ||
|
||
Args: | ||
context (SecurityContext): the current security context | ||
message (bytes): the message to wrap or encrypt | ||
associated (bytes): associated data to go with the message | ||
confidential (bool): whether or not to encrypt the message (True), | ||
or just wrap it with a MIC (False) | ||
qop (int): the desired Quality of Protection | ||
(or None for the default QoP) | ||
|
||
Returns: | ||
WrapResult: the wrapped/encrypted total message, and whether or not | ||
encryption was actually used | ||
|
||
Raises: | ||
GSSError | ||
""" | ||
|
||
cdef int conf_req = confidential | ||
cdef gss_qop_t qop_req = qop if qop is not None else GSS_C_QOP_DEFAULT | ||
cdef gss_buffer_desc message_buffer = gss_buffer_desc(len(message), | ||
message) | ||
|
||
cdef gss_buffer_t assoc_buffer_ptr = GSS_C_NO_BUFFER | ||
cdef gss_buffer_desc assoc_buffer | ||
if associated is not None: | ||
assoc_buffer = gss_buffer_desc(len(associated), associated) | ||
assoc_buffer_ptr = &assoc_buffer | ||
|
||
cdef int conf_used | ||
# GSS_C_EMPTY_BUFFER | ||
cdef gss_buffer_desc output_buffer = gss_buffer_desc(0, NULL) | ||
|
||
cdef OM_uint32 maj_stat, min_stat | ||
|
||
with nogil: | ||
maj_stat = gss_wrap_aead(&min_stat, context.raw_ctx, conf_req, qop_req, | ||
assoc_buffer_ptr, &message_buffer, | ||
&conf_used, &output_buffer) | ||
|
||
if maj_stat == GSS_S_COMPLETE: | ||
output_message = (<char*>output_buffer.value)[:output_buffer.length] | ||
gss_release_buffer(&min_stat, &output_buffer) | ||
return WrapResult(output_message, <bint>conf_used) | ||
else: | ||
raise GSSError(maj_stat, min_stat) | ||
|
||
|
||
def unwrap_aead(SecurityContext context not None, bytes message not None, | ||
bytes associated=None): | ||
""" | ||
unwrap_aead(context, message, associated=None) | ||
Unwrap/Decrypt an AEAD message. | ||
|
||
This method takes an encrpyted/wrapped AEAD message and some associated | ||
data, and returns an unwrapped/decrypted message. | ||
|
||
Args: | ||
context (SecurityContext): the current security context | ||
message (bytes): the AEAD message to unwrap or decrypt | ||
associated (bytes): associated data that goes with the message | ||
|
||
Returns: | ||
UnwrapResult: the unwrapped/decrypted message, whether or on | ||
encryption was used, and the QoP used | ||
|
||
Raises: | ||
GSSError | ||
""" | ||
|
||
cdef gss_buffer_desc input_buffer = gss_buffer_desc(len(message), message) | ||
|
||
cdef gss_buffer_t assoc_buffer_ptr = GSS_C_NO_BUFFER | ||
cdef gss_buffer_desc assoc_buffer | ||
if associated is not None: | ||
assoc_buffer = gss_buffer_desc(len(associated), associated) | ||
assoc_buffer_ptr = &assoc_buffer | ||
|
||
# GSS_C_EMPTY_BUFFER | ||
cdef gss_buffer_desc output_buffer = gss_buffer_desc(0, NULL) | ||
cdef int conf_state | ||
cdef gss_qop_t qop_state | ||
|
||
cdef OM_uint32 maj_stat, min_stat | ||
|
||
with nogil: | ||
maj_stat = gss_unwrap_aead(&min_stat, context.raw_ctx, &input_buffer, | ||
assoc_buffer_ptr, &output_buffer, | ||
&conf_state, &qop_state) | ||
|
||
if maj_stat == GSS_S_COMPLETE: | ||
output_message = (<char*>output_buffer.value)[:output_buffer.length] | ||
gss_release_buffer(&min_stat, &output_buffer) | ||
return UnwrapResult(output_message, <bint>conf_state, qop_state) | ||
else: | ||
raise GSSError(maj_stat, min_stat) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.