cryptopp/TestVectors
Jeffrey Walton 5bf43f4ef3
Add additional Threefish test vectors
The test vectors came from NIST submission archive (NIST_CD_102610), skein_golden_kat_short_internals.txt
2017-05-15 22:55:33 -04:00
..
Readme.txt Remove EncryptBlockCipher 2017-05-10 13:50:36 -04:00
aes.txt
all.txt Add Threefish block cipher (Issue 422) 2017-05-14 13:51:41 -04:00
aria.txt Add ARIA test vectors from RFC 5794 2017-04-13 16:00:59 -04:00
blake2.txt
blake2b.txt
blake2s.txt
camellia.txt
ccm.txt
chacha.txt
cmac.txt
dlies.txt
dsa.txt
dsa_1363.txt
dsa_rfc6979.txt Group DSA-RFC6979 tests together by hash value 2017-04-15 09:03:22 -04:00
eax.txt
esign.txt
gcm.txt
hkdf.txt
hmac.txt
kalyna.txt Don't latch BlockSize or BlockPaddingScheme across tests 2017-05-14 05:26:33 -04:00
keccak.txt
mars.txt
nr.txt
panama.txt
rsa_oaep.txt
rsa_pkcs1_1_5.txt
rsa_pss.txt
rw.txt
salsa.txt
seal.txt
seed.txt
sha.txt
sha1_160_fips_180.txt Add full NIST SHA test vector suite for use with 'cryptest.exe tv' 2016-12-01 12:57:15 -05:00
sha1_fips_180.txt Add full NIST SHA test vector suite for use with 'cryptest.exe tv' 2016-12-01 12:57:15 -05:00
sha2.txt Add missing sha2 and sha3 test file names 2017-04-15 08:49:00 -04:00
sha2_224_fips_180.txt Add full NIST SHA test vector suite for use with 'cryptest.exe tv' 2016-12-01 12:57:15 -05:00
sha2_256_fips_180.txt Add full NIST SHA test vector suite for use with 'cryptest.exe tv' 2016-12-01 12:57:15 -05:00
sha2_384_fips_180.txt Add full NIST SHA test vector suite for use with 'cryptest.exe tv' 2016-12-01 12:57:15 -05:00
sha2_512_fips_180.txt Add full NIST SHA test vector suite for use with 'cryptest.exe tv' 2016-12-01 12:57:15 -05:00
sha2_fips_180.txt Add full NIST SHA test vector suite for use with 'cryptest.exe tv' 2016-12-01 12:57:15 -05:00
sha3.txt Add missing sha2 and sha3 test file names 2017-04-15 08:49:00 -04:00
sha3_224_fips_202.txt
sha3_256_fips_202.txt
sha3_384_fips_202.txt
sha3_512_fips_202.txt
sha3_fips_202.txt
shacal2.txt
siphash.txt Add Aumasson and Bernstein's SipHash (Issue 348) 2016-12-17 03:58:36 -05:00
sosemanuk.txt
tea.txt
threefish.txt Add additional Threefish test vectors 2017-05-15 22:55:33 -04:00
tls_chacha.txt
ttmac.txt
vmac.txt
wake.txt
whrlpool.txt

Readme.txt

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

Test Data Format
================

A test data file is an ASCII text file composed of sections separated by
blank lines. Each section is stand-alone and independent of other
sections that may be in the same file, and contains one or more tests.

A section is composed of a sequence of fields. Each field is one or more
lines composed of a field name, followed by a colon (":"), followed by a
field body. All but the last line of a field must end with a backslash
("\"). If any line contains a hash mark ("#"), the hash mark and
everything after it on the same line is not considered part of the field
body.

Each section must contain fields named AlgorithmType, Name, Source, and
Test. The presence and semantics of other fields depend on the algorithm
being tested and the tests to be run.

Each section may contain more than one test and therefore more than one
field named Test. In that case the order of the fields is significant. A
test should always use the last field with any given name that occurs
before the Test field.

Data Types
==========

int - small integer (less than 2^32) in decimal representation
string - human readable string
encoded string - can be one of the following
	- quoted string: "message" means "message" without the quotes
	  or terminating '\0'
	- hex encoded string: 0x74657374 or 74657374 means "test"
	- repeated string: r100 "message" to repeat "message" 100 times, or
	  r256 0x0011 to repeat 0x0011 256 times

Field Types
===========

AlgorithmType - string, for example "Signature", "AsymmetricCipher",
    "SymmetricCipher", "MAC", "MessageDigest", or "KeyFactory"
Name - string, an algorithm name from SCAN
Test - string, identifies the test to run
Source - string, text explaining where the test data came from
Comment - string, other comments about the test data
KeyFormat - string, specifies the key format. "Component" here means
    each component of the key or key pair is specified separately as a name,
    value pair, with the names depending on the algorithm being tested.
    Otherwise the value names "Key", or "PublicKey" and "PrivateKey" are
    used.
Key - encoded string
PublicKey - encoded string
PrivateKey - encoded string
Modulus - the modulus when KeyFormat=Component
SubgroupOrder - the subgroup order when KeyFormat=Component
SubgroupGenerator - the subgroup generator when KeyFormat=Component
PublicElement - the public element when KeyFormat=Component
PrivateExponent - the private exponent when KeyFormat=Component
Message - encoded string, message to be signed or verified
Signature - encoded string, signature to be verified or compared with
BlockSize - encoded string, block size for vaiable block ciphers
Plaintext - encoded string
Ciphertext - encoded string
Header - encoded string
Footer - encoded string
DerivedKey - encoded string
DerivedLength - encoded string
Digest - encoded string
TruncatedSize - int, size of truncated digest in bytes
Seek - int, seek location for random access ciphers
(more to come here)

Possible Tests
==============

KeyPairValidAndConsistent - public and private keys are both valid and
consistent with each other
PublicKeyInvalid - public key validation should not pass
PrivateKeyInvalid - private key validation should not pass
Verify - signature/digest/MAC verification should pass
VerifyTruncated - truncated digest/MAC verification should pass
NotVerify - signature/digest/MAC verification should not pass
DeterministicSign - sign message using given seed, and the resulting
    signature should equal the given signature
Encrypt - plaintext encrypts to ciphertext
DecryptMatch - ciphertext decrypts to plaintext
(more to come here)