summaryrefslogtreecommitdiffstats
path: root/crypto/evp/p_seal.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2001-09-28 01:47:36 +0000
committerDr. Stephen Henson <steve@openssl.org>2001-09-28 01:47:36 +0000
commitde822715b2a7af12844d408b6d2f5f0b655d54bb (patch)
tree764184609e9ae475b23b7f566987793bcc2c9587 /crypto/evp/p_seal.c
parent89f534e1d30ed40a03455b36cda7da13734e7238 (diff)
Constify EVP_SealInit, EVP_OpenInit
Diffstat (limited to 'crypto/evp/p_seal.c')
-rw-r--r--crypto/evp/p_seal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/evp/p_seal.c b/crypto/evp/p_seal.c
index ff16370994..c870ebfa3e 100644
--- a/crypto/evp/p_seal.c
+++ b/crypto/evp/p_seal.c
@@ -66,7 +66,7 @@
#include <openssl/objects.h>
#include <openssl/x509.h>
-int EVP_SealInit(EVP_CIPHER_CTX *ctx, EVP_CIPHER *type, unsigned char **ek,
+int EVP_SealInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *type, unsigned char **ek,
int *ekl, unsigned char *iv, EVP_PKEY **pubk, int npubk)
{
unsigned char key[EVP_MAX_KEY_LENGTH];