The unified diff between revisions [695f5995..] and [51b865be..] is displayed below. It can also be downloaded as a raw diff.
This diff has been restricted to the following files: 'checks/algos.cpp'
#
#
# patch "checks/algos.cpp"
# from [f561cfc3ff818e5349870c882eda1559636e8702]
# to [e7835fc1b1698ad0663717e6558acfc43e0619d2]
#
============================================================
--- checks/algos.cpp f561cfc3ff818e5349870c882eda1559636e8702
+++ checks/algos.cpp e7835fc1b1698ad0663717e6558acfc43e0619d2
@@ -1,4 +1,3 @@
-// this file is public domain
#include <botan/botan.h>
#include <string>
@@ -85,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;
}