aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/3rdparty/botan/src/lib/pk_pad/padding.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/3rdparty/botan/src/lib/pk_pad/padding.cpp')
-rw-r--r--src/libs/3rdparty/botan/src/lib/pk_pad/padding.cpp42
1 files changed, 0 insertions, 42 deletions
diff --git a/src/libs/3rdparty/botan/src/lib/pk_pad/padding.cpp b/src/libs/3rdparty/botan/src/lib/pk_pad/padding.cpp
deleted file mode 100644
index 134bb41017..0000000000
--- a/src/libs/3rdparty/botan/src/lib/pk_pad/padding.cpp
+++ /dev/null
@@ -1,42 +0,0 @@
-/*
-* Sets of allowed padding schemes for public key types
-*
-* This file was automatically generated by ./src/scripts/oids.py on 2017-12-20
-*
-* All manual edits to this file will be lost. Edit the script
-* then regenerate this source file.
-*
-* Botan is released under the Simplified BSD License (see license.txt)
-*/
-
-#include <botan/internal/padding.h>
-#include <map>
-#include <vector>
-#include <string>
-#include <algorithm>
-
-namespace Botan {
-
-const std::map<const std::string, std::vector<std::string>> allowed_signature_paddings =
- {
- { "DSA", {"EMSA1"} },
- { "ECDSA", {"EMSA1"} },
- { "ECGDSA", {"EMSA1"} },
- { "ECKCDSA", {"EMSA1"} },
- { "GOST-34.10", {"EMSA1"} },
- { "RSA", {"EMSA4", "EMSA3"} },
- };
-
-const std::vector<std::string> get_sig_paddings(const std::string algo)
- {
- if(allowed_signature_paddings.count(algo) > 0)
- return allowed_signature_paddings.at(algo);
- return {};
- }
-
-bool sig_algo_and_pad_ok(const std::string algo, const std::string padding)
- {
- std::vector<std::string> pads = get_sig_paddings(algo);
- return std::find(pads.begin(), pads.end(), padding) != pads.end();
- }
-}