Home
last modified time | relevance | path

Searched refs:cipher_ctx (Results 1 – 1 of 1) sorted by relevance

/PHP-5.6/ext/openssl/
H A Dopenssl.c5233 EVP_CIPHER_CTX cipher_ctx; in PHP_FUNCTION() local
5265 EVP_EncryptInit(&cipher_ctx, cipher_type, NULL, NULL); in PHP_FUNCTION()
5267 EVP_CIPHER_CTX_set_key_length(&cipher_ctx, password_len); in PHP_FUNCTION()
5271 EVP_CIPHER_CTX_set_padding(&cipher_ctx, 0); in PHP_FUNCTION()
5277 if (EVP_EncryptFinal(&cipher_ctx, (unsigned char *)outbuf + i, &i)) { in PHP_FUNCTION()
5304 EVP_CIPHER_CTX_cleanup(&cipher_ctx); in PHP_FUNCTION()
5316 EVP_CIPHER_CTX cipher_ctx; in PHP_FUNCTION() local
5362 EVP_DecryptInit(&cipher_ctx, cipher_type, NULL, NULL); in PHP_FUNCTION()
5364 EVP_CIPHER_CTX_set_key_length(&cipher_ctx, password_len); in PHP_FUNCTION()
5368 EVP_CIPHER_CTX_set_padding(&cipher_ctx, 0); in PHP_FUNCTION()
[all …]

Completed in 17 milliseconds