cipher_utils.cc 3.6 KB
Newer Older
Y
Yanghello 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
// Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

#include "paddle/fluid/framework/io/crypto/cipher_utils.h"

#include <cryptopp/osrng.h>

#include <fstream>
#include <sstream>

#include "paddle/fluid/platform/enforce.h"

namespace paddle {
namespace framework {

std::string CipherUtils::GenKey(int length) {
  CryptoPP::AutoSeededRandomPool prng;
  int bit_length = length / 8;
  std::string rng;
  rng.resize(bit_length);
  // CryptoPP::byte key[length];
  prng.GenerateBlock(reinterpret_cast<unsigned char*>(&(rng.at(0))),
                     rng.size());
  return rng;
}

std::string CipherUtils::GenKeyToFile(int length, const std::string& filename) {
  CryptoPP::AutoSeededRandomPool prng;
  std::string rng;
  int bit_length = length / 8;
  rng.resize(bit_length);
  // CryptoPP::byte key[length];
  prng.GenerateBlock(reinterpret_cast<unsigned char*>(&(rng.at(0))),
                     rng.size());
46
  std::ofstream fout(filename, std::ios::binary);
Y
Yanghello 已提交
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
  PADDLE_ENFORCE_EQ(fout.is_open(), true,
                    paddle::platform::errors::Unavailable(
                        "Failed to open file : %s, "
                        "make sure input filename is available.",
                        filename));
  fout.write(rng.c_str(), rng.size());
  fout.close();
  return rng;
}

std::string CipherUtils::ReadKeyFromFile(const std::string& filename) {
  std::ifstream fin(filename, std::ios::binary);
  std::string ret{std::istreambuf_iterator<char>(fin),
                  std::istreambuf_iterator<char>()};
  fin.close();
  return ret;
}

std::unordered_map<std::string, std::string> CipherUtils::LoadConfig(
    const std::string& config_file) {
  std::ifstream fin(config_file);
  PADDLE_ENFORCE_EQ(fin.is_open(), true,
                    paddle::platform::errors::Unavailable(
                        "Failed to open file : %s, "
                        "make sure input filename is available.",
                        config_file));
  std::unordered_map<std::string, std::string> ret;
  char c;
  std::string line;
  std::istringstream iss;
  while (std::getline(fin, line)) {
    if (line.at(0) == '#') {
      continue;
    }
    iss.clear();
    iss.str(line);
    std::string key;
    std::string value;
    if (!(iss >> key >> c >> value) && (c == ':')) {
      PADDLE_THROW(paddle::platform::errors::InvalidArgument(
          "Parse config file error, "
          "check the format of configure in file %s.",
          config_file));
    }
    ret.insert({key, value});
  }
  return ret;
}

template <>
bool CipherUtils::GetValue<bool>(
    const std::unordered_map<std::string, std::string>& config,
    const std::string& key, bool* output) {
  auto itr = config.find(key);
  if (itr == config.end()) {
    return false;
  }
  std::istringstream iss(itr->second);
  *output = false;
  iss >> *output;
  if (iss.fail()) {
    iss.clear();
    iss >> std::boolalpha >> *output;
  }
  return true;
}

const int CipherUtils::AES_DEFAULT_IV_SIZE = 128;
const int CipherUtils::AES_DEFAULT_TAG_SIZE = 128;
}  // namespace framework
}  // namespace paddle