aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/hmac
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2005-05-17 00:01:48 +0000
committerAndy Polyakov <appro@openssl.org>2005-05-17 00:01:48 +0000
commit25a66ee3cbb7b3f76b95cd4e4b6d4ce6f114ecf8 (patch)
tree48c94f2b982a9e3c1854825937c4d65e3a9d4de7 /crypto/hmac
parent0978dec13110c2ebc18b9e476a859389745c7596 (diff)
downloadopenssl-25a66ee3cbb7b3f76b95cd4e4b6d4ce6f114ecf8.tar.gz
Move cryptlib.h prior bio.h. Actually it makes sense to include cryptlib.h
first everywhere in crypto and skip stdio.h and string.h [because it includes them].
Diffstat (limited to 'crypto/hmac')
-rw-r--r--crypto/hmac/hmac.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/hmac/hmac.c b/crypto/hmac/hmac.c
index 16d95e08d5..c45e001492 100644
--- a/crypto/hmac/hmac.c
+++ b/crypto/hmac/hmac.c
@@ -58,8 +58,8 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
-#include <openssl/hmac.h>
#include "cryptlib.h"
+#include <openssl/hmac.h>
void HMAC_Init_ex(HMAC_CTX *ctx, const void *key, int len,
const EVP_MD *md, ENGINE *impl)