aboutsummaryrefslogtreecommitdiffstats
path: root/src/tests
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2018-08-23 04:21:43 -0400
committerJack Lloyd <[email protected]>2018-08-23 04:21:43 -0400
commit9a24b02e6dbff69f326a6a2a90272e238f2bb9df (patch)
treed4eeb60e98b1fecaf06a991d956a48efefebff84 /src/tests
parentd71ce2f9d53557a138e5ba6d6127de952e3aa735 (diff)
Add PBES2 as alias for PBE-PKCS5v20
Easier to remember and type.
Diffstat (limited to 'src/tests')
-rw-r--r--src/tests/test_pubkey.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/test_pubkey.cpp b/src/tests/test_pubkey.cpp
index 765e7e396..20bdc73ac 100644
--- a/src/tests/test_pubkey.cpp
+++ b/src/tests/test_pubkey.cpp
@@ -712,7 +712,7 @@ std::vector<Test::Result> PK_Key_Generation_Test::run()
#if defined(BOTAN_HAS_PKCS5_PBES2) && defined(BOTAN_HAS_AES) && defined(BOTAN_HAS_SCRYPT)
- test_pbe_roundtrip(result, key, "PBE-PKCS5v20(AES-128/CBC,Scrypt)", Test::random_password());
+ test_pbe_roundtrip(result, key, "PBES2(AES-128/CBC,Scrypt)", Test::random_password());
#endif
}