- (djm) [cipher-aes.c cipher-ctr.c openbsd-compat/openssl-compat.h]
Move prototypes for replacement ciphers to openssl-compat.h; fix EVP prototypes for openssl-1.0.0-fips.
This commit is contained in:
parent
13f5f768bc
commit
da5cc5d09a
|
@ -1,3 +1,8 @@
|
||||||
|
20130120
|
||||||
|
- (djm) [cipher-aes.c cipher-ctr.c openbsd-compat/openssl-compat.h]
|
||||||
|
Move prototypes for replacement ciphers to openssl-compat.h; fix EVP
|
||||||
|
prototypes for openssl-1.0.0-fips.
|
||||||
|
|
||||||
20130118
|
20130118
|
||||||
- (djm) OpenBSD CVS Sync
|
- (djm) OpenBSD CVS Sync
|
||||||
- djm@cvs.openbsd.org 2013/01/17 23:00:01
|
- djm@cvs.openbsd.org 2013/01/17 23:00:01
|
||||||
|
|
|
@ -46,9 +46,6 @@ struct ssh_rijndael_ctx
|
||||||
u_char r_iv[RIJNDAEL_BLOCKSIZE];
|
u_char r_iv[RIJNDAEL_BLOCKSIZE];
|
||||||
};
|
};
|
||||||
|
|
||||||
const EVP_CIPHER * evp_rijndael(void);
|
|
||||||
void ssh_rijndael_iv(EVP_CIPHER_CTX *, int, u_char *, u_int);
|
|
||||||
|
|
||||||
static int
|
static int
|
||||||
ssh_rijndael_init(EVP_CIPHER_CTX *ctx, const u_char *key, const u_char *iv,
|
ssh_rijndael_init(EVP_CIPHER_CTX *ctx, const u_char *key, const u_char *iv,
|
||||||
int enc)
|
int enc)
|
||||||
|
|
|
@ -34,9 +34,6 @@
|
||||||
#include <openssl/aes.h>
|
#include <openssl/aes.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
const EVP_CIPHER *evp_aes_128_ctr(void);
|
|
||||||
void ssh_aes_ctr_iv(EVP_CIPHER_CTX *, int, u_char *, size_t);
|
|
||||||
|
|
||||||
struct ssh_aes_ctr_ctx
|
struct ssh_aes_ctr_ctx
|
||||||
{
|
{
|
||||||
AES_KEY aes_ctx;
|
AES_KEY aes_ctx;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: openssl-compat.h,v 1.21 2013/01/09 05:42:49 djm Exp $ */
|
/* $Id: openssl-compat.h,v 1.22 2013/01/20 11:31:37 djm Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2005 Darren Tucker <dtucker@zip.com.au>
|
* Copyright (c) 2005 Darren Tucker <dtucker@zip.com.au>
|
||||||
|
@ -40,7 +40,7 @@
|
||||||
# define EVP_CIPHER_CTX_get_app_data(e) ((e)->app_data)
|
# define EVP_CIPHER_CTX_get_app_data(e) ((e)->app_data)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if OPENSSL_VERSION_NUMBER < 0x1000000fL
|
#if OPENSSL_VERSION_NUMBER < 0x10000001L
|
||||||
# define LIBCRYPTO_EVP_INL_TYPE unsigned int
|
# define LIBCRYPTO_EVP_INL_TYPE unsigned int
|
||||||
#else
|
#else
|
||||||
# define LIBCRYPTO_EVP_INL_TYPE size_t
|
# define LIBCRYPTO_EVP_INL_TYPE size_t
|
||||||
|
@ -59,16 +59,16 @@
|
||||||
# define EVP_aes_128_cbc evp_rijndael
|
# define EVP_aes_128_cbc evp_rijndael
|
||||||
# define EVP_aes_192_cbc evp_rijndael
|
# define EVP_aes_192_cbc evp_rijndael
|
||||||
# define EVP_aes_256_cbc evp_rijndael
|
# define EVP_aes_256_cbc evp_rijndael
|
||||||
extern const EVP_CIPHER *evp_rijndael(void);
|
const EVP_CIPHER *evp_rijndael(void);
|
||||||
extern void ssh_rijndael_iv(EVP_CIPHER_CTX *, int, u_char *, u_int);
|
void ssh_rijndael_iv(EVP_CIPHER_CTX *, int, u_char *, u_int);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef OPENSSL_HAVE_EVPCTR
|
#ifndef OPENSSL_HAVE_EVPCTR
|
||||||
#define EVP_aes_128_ctr evp_aes_128_ctr
|
#define EVP_aes_128_ctr evp_aes_128_ctr
|
||||||
#define EVP_aes_192_ctr evp_aes_128_ctr
|
#define EVP_aes_192_ctr evp_aes_128_ctr
|
||||||
#define EVP_aes_256_ctr evp_aes_128_ctr
|
#define EVP_aes_256_ctr evp_aes_128_ctr
|
||||||
extern const EVP_CIPHER *evp_aes_128_ctr(void);
|
const EVP_CIPHER *evp_aes_128_ctr(void);
|
||||||
extern void ssh_aes_ctr_iv(EVP_CIPHER_CTX *, int, u_char *, u_int);
|
void ssh_aes_ctr_iv(EVP_CIPHER_CTX *, int, u_char *, size_t);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Avoid some #ifdef. Code that uses these is unreachable without GCM */
|
/* Avoid some #ifdef. Code that uses these is unreachable without GCM */
|
||||||
|
|
Loading…
Reference in New Issue