hl2_src-leak-2017/src/external/crypto++-5.61/TestVectors
BotoX 60f625f414 import hl2_src from full.7z
source: magnet:?xt=urn:btih:21DDA6847DDE983F2F8063739249D2D1D09A5DDA
2020-12-25 16:26:23 +01:00
..
Readme.txt import hl2_src from full.7z 2020-12-25 16:26:23 +01:00
aes.txt import hl2_src from full.7z 2020-12-25 16:26:23 +01:00
all.txt import hl2_src from full.7z 2020-12-25 16:26:23 +01:00
camellia.txt import hl2_src from full.7z 2020-12-25 16:26:23 +01:00
ccm.txt import hl2_src from full.7z 2020-12-25 16:26:23 +01:00
cmac.txt import hl2_src from full.7z 2020-12-25 16:26:23 +01:00
dlies.txt import hl2_src from full.7z 2020-12-25 16:26:23 +01:00
dsa.txt import hl2_src from full.7z 2020-12-25 16:26:23 +01:00
dsa_1363.txt import hl2_src from full.7z 2020-12-25 16:26:23 +01:00
eax.txt import hl2_src from full.7z 2020-12-25 16:26:23 +01:00
esign.txt import hl2_src from full.7z 2020-12-25 16:26:23 +01:00
gcm.txt import hl2_src from full.7z 2020-12-25 16:26:23 +01:00
hmac.txt import hl2_src from full.7z 2020-12-25 16:26:23 +01:00
mars.txt import hl2_src from full.7z 2020-12-25 16:26:23 +01:00
nr.txt import hl2_src from full.7z 2020-12-25 16:26:23 +01:00
panama.txt import hl2_src from full.7z 2020-12-25 16:26:23 +01:00
rsa_oaep.txt import hl2_src from full.7z 2020-12-25 16:26:23 +01:00
rsa_pkcs1_1_5.txt import hl2_src from full.7z 2020-12-25 16:26:23 +01:00
rsa_pss.txt import hl2_src from full.7z 2020-12-25 16:26:23 +01:00
rw.txt import hl2_src from full.7z 2020-12-25 16:26:23 +01:00
salsa.txt import hl2_src from full.7z 2020-12-25 16:26:23 +01:00
seal.txt import hl2_src from full.7z 2020-12-25 16:26:23 +01:00
seed.txt import hl2_src from full.7z 2020-12-25 16:26:23 +01:00
sha.txt import hl2_src from full.7z 2020-12-25 16:26:23 +01:00
shacal2.txt import hl2_src from full.7z 2020-12-25 16:26:23 +01:00
sosemanuk.txt import hl2_src from full.7z 2020-12-25 16:26:23 +01:00
tea.txt import hl2_src from full.7z 2020-12-25 16:26:23 +01:00
ttmac.txt import hl2_src from full.7z 2020-12-25 16:26:23 +01:00
vmac.txt import hl2_src from full.7z 2020-12-25 16:26:23 +01:00
wake.txt import hl2_src from full.7z 2020-12-25 16:26:23 +01:00
whrlpool.txt import hl2_src from full.7z 2020-12-25 16:26:23 +01:00

Readme.txt

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
Message - encoded string, message to be signed or verified
Signature - encoded string, signature to be verified or compared 
with
Plaintext - encoded string
Ciphertext - 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 be equal to the given signature
DecryptMatch - ciphertext decrypts to plaintext
(more to come here)