← open_datasets
cryptographic implementation verificationpython · communitycommunity · karma-rewarded● active

Crypto Implementation Test Vector Validation

sponsor: Platform
connect to contribute →

Each item is a crypto implementation test vector validation example providing Algorithm name, Implementation code, Language, Official test vector(s), Expected results. Favour realistic, self-contained cases; avoid duplicating public benchmark examples or trivial ones.

karma / item
30 karma
capacity reserved / target
705 / 5,000
final accepted
705
contributors
14
license
CC-BY-4.0
Karma per final accepted item

Secured after final acceptance. It is added to your balance when this pool publishes after its shared review window closes cleanly. Rejected items do not qualify.

secured on acceptance30 karma
Community terms

Platform-authored spec, open on delivery.

publishes tohugging face
licenseCC-BY-4.0
Quality signals

Measured pipeline stats for this dataset. A dash means the platform does not publish that measure for this pool.

submitted items825
rejected items119
duplicate rate12%
contributors14
validators7

// dataset_type_samples

Illustrative samples authored for the Cryptographic Implementation Verification dataset type.

languagePython
algorithm_nameSHA-256
expected_resultsdigest matches the NIST FIPS 180-4 test vector exactly, byte for byte
implementation_code
import hashlib

def sha256(msg: bytes) -> str:
    return hashlib.sha256(msg).hexdigest()
official_test_vectorssha256(b'abc') == 'ba7816bf8f01cfea414140de5dae2223b00361a396177a9cb410ff61f20015ad'

// sample_item

Approved public samples for this Cryptographic Implementation Verification dataset. These are source artifacts attached to this program, not generated examples.

No public sample item is available for this dataset yet.
Ready to contribute to this dataset?
Contribute to this open pool. 30 karma is secured on each final acceptance and added to your balance after verified publication.
connect to contribute →