Beginnings of EVP cipher overhaul. This should eventually

enhance and tidy up the EVP interface.

This patch adds initial support for variable length ciphers
and changes S/MIME code to use this.

Some other library functions need modifying to support use
of modified cipher parameters.

Also need to change all the cipher functions that should
return error codes, but currenly don't.

And of course it needs extensive testing...
This commit is contained in:
Dr. Stephen Henson
2000-05-26 23:51:35 +00:00
parent 7b224903f4
commit 7f0606016c
37 changed files with 166 additions and 65 deletions

View File

@@ -69,12 +69,14 @@ static EVP_CIPHER n_cipher=
{
NID_undef,
1,0,0,
0,
null_init_key,
null_cipher,
NULL,
0,
NULL,
NULL,
NULL
};
EVP_CIPHER *EVP_enc_null(void)