summaryrefslogtreecommitdiff
path: root/TestVectors
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2018-11-04 14:21:54 -0500
committerJeffrey Walton <noloader@gmail.com>2018-11-04 14:21:54 -0500
commit40fa6873f9581146d377b4acd379d04fcd0eaa0a (patch)
treeb04c2444d8c20c72612fa9007999fd738f832e17 /TestVectors
parentf7c0fab5b2d90b384f9a3002f8e780dd4fe29906 (diff)
downloadcryptopp-git-40fa6873f9581146d377b4acd379d04fcd0eaa0a.tar.gz
Add ability to Seek64 in test framework (GH #732)
Also see https://github.com/randombit/botan/pull/1728
Diffstat (limited to 'TestVectors')
-rw-r--r--TestVectors/Readme.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/TestVectors/Readme.txt b/TestVectors/Readme.txt
index 0c8e45cc..5a27c99f 100644
--- a/TestVectors/Readme.txt
+++ b/TestVectors/Readme.txt
@@ -24,7 +24,8 @@ before the Test field.
Data Types
==========
-int - small integer (less than 2^32) in decimal representation
+signed int - small integer (less than 2^32) in decimal representation
+unsigned long - large integer (less than 2^64) convertible by strtoul or strtoull
string - human readable string
encoded string - can be one of the following
- quoted string: "message" means "message" without the quotes
@@ -68,6 +69,7 @@ DerivedLength - encoded string
Digest - encoded string
TruncatedSize - int, size of truncated digest in bytes
Seek - int, seek location for random access ciphers
+Seek64 - unsigned long, seek location for random access ciphers
(more to come here)
Possible Tests