summaryrefslogtreecommitdiffstats
path: root/doc/man3/HMAC.pod
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man3/HMAC.pod')
-rw-r--r--doc/man3/HMAC.pod6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/man3/HMAC.pod b/doc/man3/HMAC.pod
index ad7aaeb099..8cc3df9ab7 100644
--- a/doc/man3/HMAC.pod
+++ b/doc/man3/HMAC.pod
@@ -21,14 +21,14 @@ HMAC_size
#include <openssl/hmac.h>
unsigned char *HMAC(const EVP_MD *evp_md, const void *key,
- int key_len, const unsigned char *d, int n,
- unsigned char *md, unsigned int *md_len);
+ int key_len, const unsigned char *d, int n,
+ unsigned char *md, unsigned int *md_len);
HMAC_CTX *HMAC_CTX_new(void);
int HMAC_CTX_reset(HMAC_CTX *ctx);
int HMAC_Init_ex(HMAC_CTX *ctx, const void *key, int key_len,
- const EVP_MD *md, ENGINE *impl);
+ const EVP_MD *md, ENGINE *impl);
int HMAC_Update(HMAC_CTX *ctx, const unsigned char *data, int len);
int HMAC_Final(HMAC_CTX *ctx, unsigned char *md, unsigned int *len);