diff options
author | lloyd <[email protected]> | 2007-11-16 05:38:58 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2007-11-16 05:38:58 +0000 |
commit | 48683e5f3cc108bc7ee5cc9492aefd18d2fc7699 (patch) | |
tree | 6de00149e06a65aaf6f1cad45342bcd73ecf44a8 /checks | |
parent | c697efd9bbb28e7c6f6afb3014fcced83598bb6f (diff) |
Add base64 encoding and decoding to the set of benchmarked filters
Diffstat (limited to 'checks')
-rw-r--r-- | checks/algos.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/checks/algos.cpp b/checks/algos.cpp index be9e2e358..f9d8dc0aa 100644 --- a/checks/algos.cpp +++ b/checks/algos.cpp @@ -84,5 +84,8 @@ std::vector<algorithm> get_algos() algos.push_back(algorithm("RNG", "Randpool")); algos.push_back(algorithm("RNG", "X9.31-RNG")); + algos.push_back(algorithm("Codec", "Base64_Encode")); + algos.push_back(algorithm("Codec", "Base64_Decode")); + return algos; } |