Python binding for xxHash library providing fast non-cryptographic hash algorithms
Overall
score
80%
Evaluation — 80%
↑ 1.03xAgent success when using this tile
{
"context": "This criteria evaluates how well the engineer uses xxhash hasher object properties (digest_size, block_size, name, seed) to inspect and compare hash algorithms. The focus is on correct usage of these properties to extract algorithm metadata.",
"type": "weighted_checklist",
"checklist": [
{
"name": "Hasher instantiation",
"description": "Creates hasher objects using xxhash functions (e.g., xxhash.xxh32(), xxhash.xxh64(), xxhash.xxh3_64(), xxhash.xxh3_128()) to access their properties",
"max_score": 20
},
{
"name": "digest_size usage",
"description": "Accesses the digest_size property from hasher objects to determine the size of hash output in bytes",
"max_score": 20
},
{
"name": "block_size usage",
"description": "Accesses the block_size property from hasher objects to determine the internal block size in bytes",
"max_score": 20
},
{
"name": "name property usage",
"description": "Accesses the name property from hasher objects to retrieve the algorithm name",
"max_score": 15
},
{
"name": "seed property usage",
"description": "Creates hashers with custom seed values and accesses the seed property to verify the seed was correctly set",
"max_score": 25
}
]
}Install with Tessl CLI
npx tessl i tessl/pypi-xxhashdocs
evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10