FastDeploy  latest
Fast & Easy to Deploy!
encrypt.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 #include <iostream>
17 #include <string>
18 
19 #include "fastdeploy/utils/utils.h"
20 
21 #ifndef PADDLE_MODEL_PROTECT_API_PADDLE_MODEL_ENCRYPT_H
22 #define PADDLE_MODEL_PROTECT_API_PADDLE_MODEL_ENCRYPT_H
23 namespace fastdeploy {
24 #ifdef __cplusplus
25 extern "C" {
26 #endif
27 
32 FASTDEPLOY_DECL std::string GenerateRandomKey();
33 
41 FASTDEPLOY_DECL int EncryptStream(const std::string &keydata,
42  std::istream& in_stream,
43  std::ostream& out_stream);
44 
51 FASTDEPLOY_DECL std::vector<std::string> Encrypt(const std::string& input,
52  const std::string& key = GenerateRandomKey());
53 
54 #ifdef __cplusplus
55 }
56 #endif
57 } // namespace fastdeploy
58 #endif // PADDLE_MODEL_PROTECT_API_PADDLE_MODEL_ENCRYPT_H
FASTDEPLOY_DECL int EncryptStream(const std::string &keydata, std::istream &in_stream, std::ostream &out_stream)
encrypt a std::istream with key
FASTDEPLOY_DECL std::vector< std::string > Encrypt(const std::string &input, const std::string &key=GenerateRandomKey())
encrypt a string with key
Definition: encrypt.cc:90
FASTDEPLOY_DECL std::string GenerateRandomKey()
generate a random key(base64-32bytes) for an encrypted model
Definition: encrypt.cc:32
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16