From: Dr. Stephen Henson <steve@openssl.org> Date: Sun, 29 May 2011 16:16:55 +0000 (+0000) Subject: Add more cipher prototypes. X-Git-Tag: OpenSSL-fips-2_0-rc1~364 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=3e2e231852a52cfe34e3f51a42cb8d8f140f0b5b;p=oweals%2Fopenssl.git Add more cipher prototypes. --- diff --git a/fips/fips.h b/fips/fips.h index 7da626b654..a93233bfc8 100644 --- a/fips/fips.h +++ b/fips/fips.h @@ -181,6 +181,9 @@ int FIPS_md_ctx_cleanup(EVP_MD_CTX *ctx); int FIPS_cipherinit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, const unsigned char *key, const unsigned char *iv, int enc); +int FIPS_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, + const unsigned char *in, unsigned int inl); +int FIPS_cipher_ctx_cleanup(EVP_CIPHER_CTX *c); const EVP_CIPHER *FIPS_evp_aes_128_cbc(void); const EVP_CIPHER *FIPS_evp_aes_128_ccm(void);