Dummy EVP_CipherUpdate EVP_CipherFinal_ex

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@23624 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2008-08-18 20:13:10 +00:00
parent abce4983a7
commit e8bb6453e2

View File

@@ -792,7 +792,43 @@ EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *c, ENGINE *engine,
}
/**
* Encypher/decypher data
* Encipher/decipher partial data
*
* @param ctx the cipher context.
* @param out output data from the operation.
* @param outlen output length
* @param in input data to the operation.
* @param inlen length of data.
*
* @return 1 on success.
*/
int
EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, void *out, int *outlen,
void *in, size_t inlen)
{
return 0;
}
/**
* Encipher/decipher final data
*
* @param ctx the cipher context.
* @param out output data from the operation.
* @param outlen output length
*
* @return 1 on success.
*/
int
EVP_CipherFinal_ex(EVP_CIPHER_CTX *ctx, void *out, int *outlen)
{
return 0;
}
/**
* Encipher/decipher data
*
* @param ctx the cipher context.
* @param out out data from the operation.