Lines Matching refs:aad
7472 const char *aad, size_t aad_len, int enc) /* {{{ */ in php_openssl_cipher_update() argument
7482 …if (mode->is_aead && !EVP_CipherUpdate(cipher_ctx, NULL, &i, (const unsigned char *) aad, (int) aa… in php_openssl_cipher_update()
7518 const char *aad, size_t aad_len) in php_openssl_encrypt() argument
7529 PHP_OPENSSL_CHECK_SIZE_T_TO_INT_NULL_RETURN(aad_len, aad); in php_openssl_encrypt()
7551 data, data_len, aad, aad_len, 1) == FAILURE) { in php_openssl_encrypt()
7606 char *data, *method, *password, *iv = "", *aad = ""; in PHP_FUNCTION() local
7612 &password, &password_len, &options, &iv, &iv_len, &tag, &aad, &aad_len, &tag_len) == FAILURE) { in PHP_FUNCTION()
7616 …n, method, method_len, password, password_len, options, iv, iv_len, tag, tag_len, aad, aad_len))) { in PHP_FUNCTION()
7631 const char *aad, size_t aad_len) in php_openssl_decrypt() argument
7643 PHP_OPENSSL_CHECK_SIZE_T_TO_INT_NULL_RETURN(aad_len, aad); in php_openssl_decrypt()
7676 data, data_len, aad, aad_len, 0) == FAILURE) { in php_openssl_decrypt()
7707 char *data, *method, *password, *iv = "", *tag = NULL, *aad = ""; in PHP_FUNCTION() local
7712 &password, &password_len, &options, &iv, &iv_len, &tag, &tag_len, &aad, &aad_len) == FAILURE) { in PHP_FUNCTION()
7721 …n, method, method_len, password, password_len, options, iv, iv_len, tag, tag_len, aad, aad_len))) { in PHP_FUNCTION()