Lines Matching refs:aad
7155 const char *aad, size_t aad_len, int enc) /* {{{ */ in php_openssl_cipher_update() argument
7165 …if (mode->is_aead && !EVP_CipherUpdate(cipher_ctx, NULL, &i, (const unsigned char *) aad, (int) aa… in php_openssl_cipher_update()
7201 const char *aad, size_t aad_len) in php_openssl_encrypt() argument
7212 PHP_OPENSSL_CHECK_SIZE_T_TO_INT_NULL_RETURN(aad_len, aad); in php_openssl_encrypt()
7234 data, data_len, aad, aad_len, 1) == FAILURE) { in php_openssl_encrypt()
7289 char *data, *method, *password, *iv = "", *aad = ""; in PHP_FUNCTION() local
7295 &password, &password_len, &options, &iv, &iv_len, &tag, &aad, &aad_len, &tag_len) == FAILURE) { in PHP_FUNCTION()
7299 …n, method, method_len, password, password_len, options, iv, iv_len, tag, tag_len, aad, aad_len))) { in PHP_FUNCTION()
7314 const char *aad, size_t aad_len) in php_openssl_decrypt() argument
7326 PHP_OPENSSL_CHECK_SIZE_T_TO_INT_NULL_RETURN(aad_len, aad); in php_openssl_decrypt()
7359 data, data_len, aad, aad_len, 0) == FAILURE) { in php_openssl_decrypt()
7390 char *data, *method, *password, *iv = "", *tag = NULL, *aad = ""; in PHP_FUNCTION() local
7395 &password, &password_len, &options, &iv, &iv_len, &tag, &tag_len, &aad, &aad_len) == FAILURE) { in PHP_FUNCTION()
7404 …n, method, method_len, password, password_len, options, iv, iv_len, tag, tag_len, aad, aad_len))) { in PHP_FUNCTION()