16 #ifndef PADDLE_MODEL_PROTECT_UTIL_CRYPTO_AES_GCM_H 17 #define PADDLE_MODEL_PROTECT_UTIL_CRYPTO_AES_GCM_H 19 #include <openssl/aes.h> 20 #include <openssl/evp.h> 24 #include "fastdeploy/encryption/util/include/crypto/basic.h" 30 #define AES_GCM_KEY_LENGTH 32 33 #define AES_GCM_TAG_LENGTH 16 36 #define AES_GCM_IV_LENGTH 16 61 static int encrypt_aes_gcm(
const unsigned char* plaintext,
const int& len,
62 const unsigned char* key,
const unsigned char* iv,
63 unsigned char* ciphertext,
83 static int decrypt_aes_gcm(
const unsigned char* ciphertext,
const int& len,
84 const unsigned char* key,
const unsigned char* iv,
85 unsigned char* plaintext,
int& out_len);
103 static int aes_gcm_key(
const unsigned char* key,
const unsigned char* iv,
104 EVP_CIPHER_CTX* e_ctx, EVP_CIPHER_CTX* d_ctx);
123 static int aes_gcm_key(
const std::string& key_hex,
const std::string& iv_hex,
124 EVP_CIPHER_CTX* e_ctx, EVP_CIPHER_CTX* d_ctx);
130 #endif // PADDLE_MODEL_PROTECT_UTIL_CRYPTO_AES_GCM_H All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16