From fba28f19754f62b5227650143d5441fc86d4c7d7 Mon Sep 17 00:00:00 2001 From: wolfbeast Date: Wed, 25 Apr 2018 21:33:33 +0200 Subject: Revert "Update NSS to 3.35-RTM" This reverts commit f1a0f0a56fdd0fc39f255174ce08c06b91c66c94. --- security/nss/nss-tool/enc/enctool.h | 62 ------------------------------------- 1 file changed, 62 deletions(-) delete mode 100644 security/nss/nss-tool/enc/enctool.h (limited to 'security/nss/nss-tool/enc/enctool.h') diff --git a/security/nss/nss-tool/enc/enctool.h b/security/nss/nss-tool/enc/enctool.h deleted file mode 100644 index 5a6a5a164..000000000 --- a/security/nss/nss-tool/enc/enctool.h +++ /dev/null @@ -1,62 +0,0 @@ -/* This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ - -#ifndef enctool_h__ -#define enctool_h__ - -#include -#include -#include "argparse.h" -#include "prerror.h" -#include "scoped_ptrs.h" -#include "tool.h" - -class EncTool : public Tool { - public: - bool Run(const std::vector& arguments) override; - void Usage() override; - - private: - typedef bool (EncTool::*key_func_t)(const std::vector& aad, - ScopedSECItem& chacha_key, - ScopedSECItem& params); - void PrintBytes(const std::vector& bytes, const std::string& txt); - bool WriteBytes(const std::vector& bytes, std::string out_file); - void PrintError(const std::string& m, PRErrorCode err, size_t line_number); - void PrintError(const std::string& m, size_t line_number); - bool GetKey(const std::vector& key_bytes, ScopedSECItem& key_item); - bool GetAesGcmKey(const std::vector& aad, - const std::vector& iv_bytes, - const std::vector& key_bytes, - ScopedSECItem& aes_key, ScopedSECItem& params); - bool GetChachaKey(const std::vector& aad, - const std::vector& iv_bytes, - const std::vector& key_bytes, - ScopedSECItem& chacha_key, ScopedSECItem& params); - bool GenerateAesGcmKey(const std::vector& aad, - ScopedSECItem& aes_key, ScopedSECItem& params); - bool ReadAesGcmKey(const std::vector& aad, ScopedSECItem& aes_key, - ScopedSECItem& params); - std::vector GenerateRandomness(size_t num_bytes); - bool GenerateChachaKey(const std::vector& aad, - ScopedSECItem& chacha_key, ScopedSECItem& params); - bool ReadChachaKey(const std::vector& aad, ScopedSECItem& chacha_key, - ScopedSECItem& params); - bool DoCipher(std::string fileName, std::string outFile, bool encrypt, - key_func_t get_params); - size_t PrintFileSize(std::string fileName); - bool IsValidCommand(ArgParser arguments); - - bool debug_ = false; - bool write_key_ = true; - bool write_iv_ = true; - std::string key_file_ = "/tmp/key"; - std::string iv_file_ = "/tmp/iv"; - CK_MECHANISM_TYPE cipher_mech_; - - const std::string kAESCommand = "aes"; - const std::string kChaChaCommand = "chacha"; -}; - -#endif // enctool_h__ -- cgit v1.2.3