diff options
Diffstat (limited to 'usr/src/common/openssl/crypto/evp/e_rc4.c')
| -rw-r--r-- | usr/src/common/openssl/crypto/evp/e_rc4.c | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/usr/src/common/openssl/crypto/evp/e_rc4.c b/usr/src/common/openssl/crypto/evp/e_rc4.c index ff8f751eae..b84dc55ce8 100644 --- a/usr/src/common/openssl/crypto/evp/e_rc4.c +++ b/usr/src/common/openssl/crypto/evp/e_rc4.c @@ -56,10 +56,18 @@ * [including the GNU Public Licence.] */ -#ifndef OPENSSL_NO_RC4 +/* + * Copyright 2006 Sun Microsystems, Inc. All rights reserved. + * Use is subject to license terms. + */ + +#pragma ident "%Z%%M% %I% %E% SMI" #include <stdio.h> #include "cryptlib.h" + +#ifndef OPENSSL_NO_RC4 + #include <openssl/evp.h> #include <openssl/objects.h> #include <openssl/rc4.h> @@ -89,6 +97,7 @@ static const EVP_CIPHER r4_cipher= sizeof(EVP_RC4_KEY), NULL, NULL, + NULL, NULL }; @@ -103,6 +112,7 @@ static const EVP_CIPHER r4_40_cipher= sizeof(EVP_RC4_KEY), NULL, NULL, + NULL, NULL }; |
