summaryrefslogtreecommitdiffstats
path: root/crypto/evp/evp.h
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2010-11-24 13:13:49 +0000
committerDr. Stephen Henson <steve@openssl.org>2010-11-24 13:13:49 +0000
commit46fc96d4baab53c54cbcce11c84662d0a1c90b6a (patch)
tree7065370c208529f0a8bb3dcdb48f9143df56f6c2 /crypto/evp/evp.h
parentda64e0d89877a23148c430c80a78940c4004190d (diff)
constify EVP_PKEY_new_mac_key()
Diffstat (limited to 'crypto/evp/evp.h')
-rw-r--r--crypto/evp/evp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/evp/evp.h b/crypto/evp/evp.h
index b5f847857f..30f3c752f5 100644
--- a/crypto/evp/evp.h
+++ b/crypto/evp/evp.h
@@ -1073,7 +1073,7 @@ int EVP_PKEY_CTX_get_operation(EVP_PKEY_CTX *ctx);
void EVP_PKEY_CTX_set0_keygen_info(EVP_PKEY_CTX *ctx, int *dat, int datlen);
EVP_PKEY *EVP_PKEY_new_mac_key(int type, ENGINE *e,
- unsigned char *key, int keylen);
+ const unsigned char *key, int keylen);
void EVP_PKEY_CTX_set_data(EVP_PKEY_CTX *ctx, void *data);
void *EVP_PKEY_CTX_get_data(EVP_PKEY_CTX *ctx);