Add RC4 support to OpenBSD.

This commit is contained in:
Ben Laurie
2001-08-18 16:04:36 +00:00
parent a8a004987c
commit 82b2230527
4 changed files with 60 additions and 28 deletions

View File

@@ -60,6 +60,7 @@
static void load_ciphers(ENGINE *e) static void load_ciphers(ENGINE *e)
{ {
ENGINE_add_cipher(e,EVP_dev_crypto_des_ede3_cbc()); ENGINE_add_cipher(e,EVP_dev_crypto_des_ede3_cbc());
ENGINE_add_cipher(e,EVP_dev_crypto_rc4());
} }
ENGINE *ENGINE_openbsd_dev_crypto(void) ENGINE *ENGINE_openbsd_dev_crypto(void)

View File

@@ -558,6 +558,7 @@ const EVP_CIPHER *EVP_des_ede3_cbc(void);
const EVP_CIPHER *EVP_desx_cbc(void); const EVP_CIPHER *EVP_desx_cbc(void);
# ifdef OPENSSL_OPENBSD_DEV_CRYPTO # ifdef OPENSSL_OPENBSD_DEV_CRYPTO
const EVP_CIPHER *EVP_dev_crypto_des_ede3_cbc(void); const EVP_CIPHER *EVP_dev_crypto_des_ede3_cbc(void);
const EVP_CIPHER *EVP_dev_crypto_rc4(void);
# endif # endif
#endif #endif
#ifndef OPENSSL_NO_RC4 #ifndef OPENSSL_NO_RC4

View File

@@ -222,6 +222,7 @@ int EVP_EncryptFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
b=ctx->cipher->block_size; b=ctx->cipher->block_size;
if (b == 1) if (b == 1)
{ {
EVP_CIPHER_CTX_cleanup(ctx);
*outl=0; *outl=0;
return 1; return 1;
} }
@@ -303,6 +304,7 @@ int EVP_DecryptFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
b=ctx->cipher->block_size; b=ctx->cipher->block_size;
if (ctx->flags & EVP_CIPH_NO_PADDING) if (ctx->flags & EVP_CIPH_NO_PADDING)
{ {
EVP_CIPHER_CTX_cleanup(ctx);
if(ctx->buf_len) if(ctx->buf_len)
{ {
EVPerr(EVP_F_EVP_DECRYPTFINAL,EVP_R_DATA_NOT_MULTIPLE_OF_BLOCK_LENGTH); EVPerr(EVP_F_EVP_DECRYPTFINAL,EVP_R_DATA_NOT_MULTIPLE_OF_BLOCK_LENGTH);
@@ -315,12 +317,14 @@ int EVP_DecryptFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
{ {
if (ctx->buf_len || !ctx->final_used) if (ctx->buf_len || !ctx->final_used)
{ {
EVP_CIPHER_CTX_cleanup(ctx);
EVPerr(EVP_F_EVP_DECRYPTFINAL,EVP_R_WRONG_FINAL_BLOCK_LENGTH); EVPerr(EVP_F_EVP_DECRYPTFINAL,EVP_R_WRONG_FINAL_BLOCK_LENGTH);
return(0); return(0);
} }
n=ctx->final[b-1]; n=ctx->final[b-1];
if (n > b) if (n > b)
{ {
EVP_CIPHER_CTX_cleanup(ctx);
EVPerr(EVP_F_EVP_DECRYPTFINAL,EVP_R_BAD_DECRYPT); EVPerr(EVP_F_EVP_DECRYPTFINAL,EVP_R_BAD_DECRYPT);
return(0); return(0);
} }
@@ -328,6 +332,7 @@ int EVP_DecryptFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
{ {
if (ctx->final[--b] != n) if (ctx->final[--b] != n)
{ {
EVP_CIPHER_CTX_cleanup(ctx);
EVPerr(EVP_F_EVP_DECRYPTFINAL,EVP_R_BAD_DECRYPT); EVPerr(EVP_F_EVP_DECRYPTFINAL,EVP_R_BAD_DECRYPT);
return(0); return(0);
} }
@@ -339,6 +344,7 @@ int EVP_DecryptFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
} }
else else
*outl=0; *outl=0;
EVP_CIPHER_CTX_cleanup(ctx);
return(1); return(1);
} }

View File

@@ -62,6 +62,7 @@
/* longest key supported in hardware */ /* longest key supported in hardware */
#define MAX_HW_KEY 24 #define MAX_HW_KEY 24
#define MAX_HW_IV 8
static int fd; static int fd;
static int dev_failed; static int dev_failed;
@@ -107,6 +108,7 @@ static int dev_crypto_init(EVP_CIPHER_CTX *ctx)
static int dev_crypto_cleanup(EVP_CIPHER_CTX *ctx) static int dev_crypto_cleanup(EVP_CIPHER_CTX *ctx)
{ {
printf("Cleanup %d\n",data(ctx)->ses);
if(ioctl(fd,CIOCFSESSION,&data(ctx)->ses) == -1) if(ioctl(fd,CIOCFSESSION,&data(ctx)->ses) == -1)
err("CIOCFSESSION failed"); err("CIOCFSESSION failed");
@@ -116,40 +118,34 @@ static int dev_crypto_cleanup(EVP_CIPHER_CTX *ctx)
} }
/* FIXME: there should be some non-fatal way to report we fell back to s/w? */ /* FIXME: there should be some non-fatal way to report we fell back to s/w? */
static int dev_crypto_des_ede3_init_key(EVP_CIPHER_CTX *ctx, static int dev_crypto_init_key(EVP_CIPHER_CTX *ctx,int cipher,
const unsigned char *key, const unsigned char *key,int klen)
const unsigned char *iv, int enc)
{ {
if(!dev_crypto_init(ctx)) if(!dev_crypto_init(ctx))
{ return 0;
/* fall back to using software... */
ctx->cipher=EVP_des_ede3_cbc(); assert(ctx->cipher->iv_len <= MAX_HW_IV);
return ctx->cipher->init(ctx,key,iv,enc);
} memcpy(data(ctx)->key,key,klen);
memcpy(data(ctx)->key,key,24);
data(ctx)->cipher=CRYPTO_3DES_CBC; data(ctx)->cipher=cipher;
data(ctx)->mac=0; data(ctx)->mac=0;
data(ctx)->keylen=24; data(ctx)->keylen=klen;
if (ioctl(fd,CIOCGSESSION,data(ctx)) == -1) if (ioctl(fd,CIOCGSESSION,data(ctx)) == -1)
{ {
err("CIOCGSESSION failed"); err("CIOCGSESSION failed");
/* fall back to using software... */ return 0;
dev_crypto_cleanup(ctx);
ctx->cipher=EVP_des_ede3_cbc();
return ctx->cipher->init(ctx,key,iv,enc);
} }
printf("Init %d\n",data(ctx)->ses);
return 1; return 1;
} }
static int dev_crypto_des_ede3_cbc_cipher(EVP_CIPHER_CTX *ctx, static int dev_crypto_cipher(EVP_CIPHER_CTX *ctx,unsigned char *out,
unsigned char *out, const unsigned char *in,unsigned int inl)
const unsigned char *in,
unsigned int inl)
{ {
struct crypt_op cryp; struct crypt_op cryp;
unsigned char lb[8]; unsigned char lb[MAX_HW_IV];
assert(data(ctx)); assert(data(ctx));
assert(!dev_failed); assert(!dev_failed);
@@ -158,18 +154,16 @@ static int dev_crypto_des_ede3_cbc_cipher(EVP_CIPHER_CTX *ctx,
cryp.ses=data(ctx)->ses; cryp.ses=data(ctx)->ses;
cryp.op=ctx->encrypt ? COP_ENCRYPT : COP_DECRYPT; cryp.op=ctx->encrypt ? COP_ENCRYPT : COP_DECRYPT;
cryp.flags=0; cryp.flags=0;
#if 0
cryp.len=((inl+7)/8)*8;
#endif
cryp.len=inl; cryp.len=inl;
assert((inl&7) == 0); assert((inl&ctx->cipher->block_size) == 0);
cryp.src=(caddr_t)in; cryp.src=(caddr_t)in;
cryp.dst=(caddr_t)out; cryp.dst=(caddr_t)out;
cryp.mac=0; cryp.mac=0;
cryp.iv=(caddr_t)ctx->iv; if(ctx->cipher->iv_len)
cryp.iv=(caddr_t)ctx->iv;
if(!ctx->encrypt) if(!ctx->encrypt)
memcpy(lb,&in[cryp.len-8],8); memcpy(lb,&in[cryp.len-ctx->cipher->iv_len],ctx->cipher->iv_len);
if (ioctl(fd, CIOCCRYPT, &cryp) == -1) if (ioctl(fd, CIOCCRYPT, &cryp) == -1)
{ {
@@ -179,19 +173,49 @@ static int dev_crypto_des_ede3_cbc_cipher(EVP_CIPHER_CTX *ctx,
} }
if(ctx->encrypt) if(ctx->encrypt)
memcpy(ctx->iv,&out[cryp.len-8],8); memcpy(ctx->iv,&out[cryp.len-ctx->cipher->iv_len],ctx->cipher->iv_len);
else else
memcpy(ctx->iv,lb,8); memcpy(ctx->iv,lb,ctx->cipher->iv_len);
return 1; return 1;
} }
static int dev_crypto_des_ede3_init_key(EVP_CIPHER_CTX *ctx,
const unsigned char *key,
const unsigned char *iv, int enc)
{ return dev_crypto_init_key(ctx,CRYPTO_3DES_CBC,key,24); }
#define dev_crypto_des_ede3_cbc_cipher dev_crypto_cipher
BLOCK_CIPHER_def_cbc(dev_crypto_des_ede3, session_op, NID_des_ede3, 8, 24, 8, BLOCK_CIPHER_def_cbc(dev_crypto_des_ede3, session_op, NID_des_ede3, 8, 24, 8,
0, dev_crypto_des_ede3_init_key, 0, dev_crypto_des_ede3_init_key,
dev_crypto_cleanup, dev_crypto_cleanup,
EVP_CIPHER_set_asn1_iv, EVP_CIPHER_set_asn1_iv,
EVP_CIPHER_get_asn1_iv, EVP_CIPHER_get_asn1_iv,
NULL) NULL)
static int dev_crypto_rc4_init_key(EVP_CIPHER_CTX *ctx,
const unsigned char *key,
const unsigned char *iv, int enc)
{ return dev_crypto_init_key(ctx,CRYPTO_ARC4,key,16); }
static const EVP_CIPHER r4_cipher=
{
NID_rc4,
1,16,0, /* FIXME: key should be up to 256 bytes */
EVP_CIPH_VARIABLE_LENGTH,
dev_crypto_rc4_init_key,
dev_crypto_cipher,
dev_crypto_cleanup,
sizeof(session_op),
NULL,
NULL,
NULL
};
const EVP_CIPHER *EVP_dev_crypto_rc4(void)
{ return &r4_cipher; }
#else #else
static void *dummy=&dummy; static void *dummy=&dummy;
#endif #endif