FastDeploy  latest
Fast & Easy to Deploy!
system_utils.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 <string>
17 #include <vector>
18 
19 #ifndef PADDLE_MODEL_PROTECT_SYSTEM_UTIL_H
20 #define PADDLE_MODEL_PROTECT_SYSTEM_UTIL_H
21 namespace fastdeploy {
22 namespace util {
23 
24 class SystemUtils {
25  public:
26  static std::string random_key_iv(int len);
27  static std::string random_str(int len);
28  static int check_key_match(const char* key, const char* filepath);
29  static int check_key_match(const std::string& key,
30  std::istream& cipher_stream);
31  static int check_file_encrypted(const char* filepath);
32  static int check_file_encrypted(std::istream& cipher_stream);
33  static int check_pattern_exist(const std::vector<std::string>& vecs,
34  const std::string& pattern);
35 
36  private:
37  inline static int intN(int n);
38 };
39 
40 } // namespace util
41 } // namespace fastdeploy
42 #endif // PADDLE_MODEL_PROTECT_SYSTEM_UTIL_H
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16