Hello,
> i find an information about add new chipers BF-CBC but find nothing.
> may be somone ever find thid?
Look at:
        http://www.openssl.org/docs/crypto/blowfish.html#
for low-level API, or use:
        EVP_CIPHER_CTX_init(&ctx);
        EVP_EncryptInit_ex(&ctx, EVP_bf_cbc(), NULL, key, iv);
        EVP_EncryptUpdate(&ctx, outbuf, &outlen, inbuf, n);
        EVP_EncryptFinal_ex(&ctx, outbuf, &outlen);
        EVP_DecryptUpdate(&ctx, outbuf, &outlen, inbuf, n)
        EVP_CIPHER_CTX_cleanup(&ctx);
for high level envelope API.

Best regards,
-- 
Marek Marcola <[EMAIL PROTECTED]>

______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
User Support Mailing List                    [email protected]
Automated List Manager                           [EMAIL PROTECTED]
  • BF-CBC Stefanus Hermawan
    • Re: BF-CBC Marek Marcola

Reply via email to