FastDeploy  latest
Fast & Easy to Deploy!
aes_gcm.h
1 // Copyright (c) 2021 PaddlePaddle Authors. All Rights Reserved.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 #pragma once
15 
16 #ifndef PADDLE_MODEL_PROTECT_UTIL_CRYPTO_AES_GCM_H
17 #define PADDLE_MODEL_PROTECT_UTIL_CRYPTO_AES_GCM_H
18 
19 #include <openssl/aes.h>
20 #include <openssl/evp.h>
21 #include <iostream>
22 #include <string>
23 
24 #include "fastdeploy/encryption/util/include/crypto/basic.h"
25 
26 namespace fastdeploy {
27 namespace util {
28 namespace crypto {
29 // aes key 32 byte for 256 bit
30 #define AES_GCM_KEY_LENGTH 32
31 
32 // aes tag 16 byte for 128 bit
33 #define AES_GCM_TAG_LENGTH 16
34 
35 // aes iv 12 byte for 96 bit
36 #define AES_GCM_IV_LENGTH 16
37 
38 class AesGcm {
39  public:
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,
64  int& out_len); // NOLINT
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); // NOLINT
86 
87  private:
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);
105 
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);
125 };
126 
127 } // namespace crypto
128 } // namespace util
129 } // namespace fastdeploy
130 #endif // PADDLE_MODEL_PROTECT_UTIL_CRYPTO_AES_GCM_H
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16