summaryrefslogtreecommitdiff
path: root/datatest.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2021-03-19 15:08:33 -0400
committerJeffrey Walton <noloader@gmail.com>2021-03-19 15:08:33 -0400
commit793f795ef3b3737bbb3d8b00ea8e6a0dabae11ab (patch)
treeea087c6dee958f9d423fbcd46ebbfe3a1c37485e /datatest.cpp
parent52b22c26725042ba0861510bb58eb46d74efed89 (diff)
downloadcryptopp-git-793f795ef3b3737bbb3d8b00ea8e6a0dabae11ab.tar.gz
Update cryptest-coverage.sh script
Diffstat (limited to 'datatest.cpp')
-rw-r--r--datatest.cpp20
1 files changed, 20 insertions, 0 deletions
diff --git a/datatest.cpp b/datatest.cpp
index 34d497fe..c12a02b8 100644
--- a/datatest.cpp
+++ b/datatest.cpp
@@ -865,6 +865,26 @@ void TestAuthenticatedSymmetricCipher(TestData &v, const NameValuePairs &overrid
// Code coverage
(void)encryptor->AlgorithmName();
(void)decryptor->AlgorithmName();
+ (void)encryptor->AlgorithmProvider();
+ (void)decryptor->AlgorithmProvider();
+ (void)encryptor->MinKeyLength();
+ (void)decryptor->MinKeyLength();
+ (void)encryptor->MaxKeyLength();
+ (void)decryptor->MaxKeyLength();
+ (void)encryptor->DefaultKeyLength();
+ (void)decryptor->DefaultKeyLength();
+ (void)encryptor->IsRandomAccess();
+ (void)decryptor->IsRandomAccess();
+ (void)encryptor->IsSelfInverting();
+ (void)decryptor->IsSelfInverting();
+ (void)encryptor->MaxHeaderLength();
+ (void)decryptor->MaxHeaderLength();
+ (void)encryptor->MaxMessageLength();
+ (void)decryptor->MaxMessageLength();
+ (void)encryptor->MaxFooterLength();
+ (void)decryptor->MaxFooterLength();
+ (void)encryptor->NeedsPrespecifiedDataLengths();
+ (void)decryptor->NeedsPrespecifiedDataLengths();
std::string encrypted, decrypted;
AuthenticatedEncryptionFilter ef(*encryptor, new StringSink(encrypted));