diff options
author | Mauro Sardara <msardara+fdio@cisco.com> | 2018-12-18 11:05:49 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@fd.io> | 2018-12-18 11:05:49 +0000 |
commit | cada1143501a48effc483e3873596c22849926b5 (patch) | |
tree | 93a1da95d69b69328a1e7d3621447797f65137c9 /libparc/parc/security/test/README.digests | |
parent | 726949d76a7207694d5a1eee84ef134a8e539115 (diff) | |
parent | a45edf23c2463ac9a4723a24792a6c5c89b1e021 (diff) |
Merge "Adding gitreview config file for this branch sub project"
Diffstat (limited to 'libparc/parc/security/test/README.digests')
-rw-r--r-- | libparc/parc/security/test/README.digests | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/libparc/parc/security/test/README.digests b/libparc/parc/security/test/README.digests new file mode 100644 index 00000000..4abfa940 --- /dev/null +++ b/libparc/parc/security/test/README.digests @@ -0,0 +1,12 @@ +# +# Generate some blocks of bytes to digest, then calculate the "truth" via openssl + +dd if=/dev/urandom of=test_digest_bytes_128.bin bs=128 count=1 + +openssl dgst -sha256 -binary < test_digest_bytes_128.bin > test_digest_bytes_128.sha256 +openssl dgst -sha512 -binary < test_digest_bytes_128.bin > test_digest_bytes_128.sha512 + +# these are for the symmetric key tests +openssl sha256 -hmac 'apple_pie_is_good' -binary < test_random_bytes > test_random_bytes.hmac_sha256 +openssl sha512 -hmac 'apple_pie_is_good' -binary < test_random_bytes > test_random_bytes.hmac_sha512 + |