diff options
author | Simo Sorce <simo@redhat.com> | 2015-06-13 16:18:39 -0400 |
---|---|---|
committer | Simo Sorce <simo@redhat.com> | 2015-06-13 16:18:39 -0400 |
commit | 0de0d0789d32b3517a75e77e5358303f73d84ad4 (patch) | |
tree | 2af45ed56ca8ef623be5d3f0979e764b0f00e0b9 /src/crypto.h | |
parent | 8cabd1e6ac6c300f7e603cd61f1a8a7a7da7fb8f (diff) | |
download | mod_auth_gssapi-0de0d0789d32b3517a75e77e5358303f73d84ad4.tar.gz mod_auth_gssapi-0de0d0789d32b3517a75e77e5358303f73d84ad4.tar.xz mod_auth_gssapi-0de0d0789d32b3517a75e77e5358303f73d84ad4.zip |
Split HMAC_BUFFER out as a separate publi function
Signed-off-by: Simo Sorce <simo@redhat.com>
Diffstat (limited to 'src/crypto.h')
-rw-r--r-- | src/crypto.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/crypto.h b/src/crypto.h index cfc83fa..40cfc31 100644 --- a/src/crypto.h +++ b/src/crypto.h @@ -12,6 +12,8 @@ struct databuf { apr_status_t SEAL_KEY_CREATE(apr_pool_t *p, struct seal_key **skey, struct databuf *keys); +apr_status_t HMAC_BUFFER(struct seal_key *skey, struct databuf *buffer, + struct databuf *result); apr_status_t SEAL_BUFFER(apr_pool_t *p, struct seal_key *skey, struct databuf *plain, struct databuf *cipher); apr_status_t UNSEAL_BUFFER(apr_pool_t *p, struct seal_key *skey, |