Home
last modified time | relevance | path

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

/PHP-5.5/ext/openssl/
H A Dopenssl.c4912 EVP_CIPHER_CTX cipher_ctx; in PHP_FUNCTION() local
4944 EVP_EncryptInit(&cipher_ctx, cipher_type, NULL, NULL); in PHP_FUNCTION()
4946 EVP_CIPHER_CTX_set_key_length(&cipher_ctx, password_len); in PHP_FUNCTION()
4950 EVP_CIPHER_CTX_set_padding(&cipher_ctx, 0); in PHP_FUNCTION()
4956 if (EVP_EncryptFinal(&cipher_ctx, (unsigned char *)outbuf + i, &i)) { in PHP_FUNCTION()
4979 EVP_CIPHER_CTX_cleanup(&cipher_ctx); in PHP_FUNCTION()
4991 EVP_CIPHER_CTX cipher_ctx; in PHP_FUNCTION() local
5037 EVP_DecryptInit(&cipher_ctx, cipher_type, NULL, NULL); in PHP_FUNCTION()
5039 EVP_CIPHER_CTX_set_key_length(&cipher_ctx, password_len); in PHP_FUNCTION()
5043 EVP_CIPHER_CTX_set_padding(&cipher_ctx, 0); in PHP_FUNCTION()
[all …]

Completed in 15 milliseconds