From 0de0d0789d32b3517a75e77e5358303f73d84ad4 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Sat, 13 Jun 2015 16:18:39 -0400 Subject: Split HMAC_BUFFER out as a separate publi function Signed-off-by: Simo Sorce --- src/crypto.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/crypto.h') 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, -- cgit