add function krb5_crypto_getblocksize that extracts the required
blocksize from a crypto context git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@11347 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
@@ -3032,6 +3032,15 @@ krb5_crypto_destroy(krb5_context context,
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
krb5_error_code
|
||||||
|
krb5_crypto_getblocksize(krb5_context context,
|
||||||
|
krb5_crypto crypto,
|
||||||
|
size_t *blocksize)
|
||||||
|
{
|
||||||
|
*blocksize = crypto->et->blocksize;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
krb5_error_code
|
krb5_error_code
|
||||||
krb5_string_to_key_derived(krb5_context context,
|
krb5_string_to_key_derived(krb5_context context,
|
||||||
const void *str,
|
const void *str,
|
||||||
|
|||||||
Reference in New Issue
Block a user