hello, Ok, i will try first
thanks, Best regards, ST. Hermawan On 7/20/07, Marek Marcola <[EMAIL PROTECTED]> wrote:
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 openssl-users@openssl.org Automated List Manager [EMAIL PROTECTED]