cipher_ctx 5173 ext/openssl/openssl.c EVP_CIPHER_CTX cipher_ctx; cipher_ctx 5205 ext/openssl/openssl.c EVP_EncryptInit(&cipher_ctx, cipher_type, NULL, NULL); cipher_ctx 5207 ext/openssl/openssl.c EVP_CIPHER_CTX_set_key_length(&cipher_ctx, password_len); cipher_ctx 5209 ext/openssl/openssl.c EVP_EncryptInit_ex(&cipher_ctx, NULL, NULL, key, (unsigned char *)iv); cipher_ctx 5211 ext/openssl/openssl.c EVP_CIPHER_CTX_set_padding(&cipher_ctx, 0); cipher_ctx 5214 ext/openssl/openssl.c EVP_EncryptUpdate(&cipher_ctx, outbuf, &i, (unsigned char *)data, data_len); cipher_ctx 5217 ext/openssl/openssl.c if (EVP_EncryptFinal(&cipher_ctx, (unsigned char *)outbuf + i, &i)) { cipher_ctx 5240 ext/openssl/openssl.c EVP_CIPHER_CTX_cleanup(&cipher_ctx); cipher_ctx 5252 ext/openssl/openssl.c EVP_CIPHER_CTX cipher_ctx; cipher_ctx 5298 ext/openssl/openssl.c EVP_DecryptInit(&cipher_ctx, cipher_type, NULL, NULL); cipher_ctx 5300 ext/openssl/openssl.c EVP_CIPHER_CTX_set_key_length(&cipher_ctx, password_len); cipher_ctx 5302 ext/openssl/openssl.c EVP_DecryptInit_ex(&cipher_ctx, NULL, NULL, key, (unsigned char *)iv); cipher_ctx 5304 ext/openssl/openssl.c EVP_CIPHER_CTX_set_padding(&cipher_ctx, 0); cipher_ctx 5306 ext/openssl/openssl.c EVP_DecryptUpdate(&cipher_ctx, outbuf, &i, (unsigned char *)data, data_len); cipher_ctx 5308 ext/openssl/openssl.c if (EVP_DecryptFinal(&cipher_ctx, (unsigned char *)outbuf + i, &i)) { cipher_ctx 5325 ext/openssl/openssl.c EVP_CIPHER_CTX_cleanup(&cipher_ctx);