tessl install tessl/npm-crypto-browserify@3.12.0Browser-compatible implementation of Node.js crypto module providing cryptographic operations in web environments.
Agent Success
Agent success rate when using this tile
100%
Improvement
Agent success rate improvement when using this tile compared to baseline
1x
Baseline
Agent success rate without this tile
100%
{
"context": "This evaluation assesses how effectively the engineer uses crypto-browserify's utility functions (getHashes, getCiphers, listCiphers) to discover and validate available cryptographic algorithms. The focus is on proper API usage rather than general code quality.",
"type": "weighted_checklist",
"checklist": [
{
"name": "Uses getHashes()",
"description": "Uses crypto.getHashes() function to retrieve available hash algorithms in getAvailableHashes()",
"max_score": 30
},
{
"name": "Uses getCiphers() or listCiphers()",
"description": "Uses crypto.getCiphers() or crypto.listCiphers() function to retrieve available cipher algorithms in getAvailableCiphers()",
"max_score": 30
},
{
"name": "Hash validation implementation",
"description": "Implements isHashSupported() by checking if the algorithm exists in the array returned by getHashes() (e.g., using includes(), indexOf(), or Set)",
"max_score": 20
},
{
"name": "Cipher validation implementation",
"description": "Implements isCipherSupported() by checking if the algorithm exists in the array returned by getCiphers() or listCiphers() (e.g., using includes(), indexOf(), or Set)",
"max_score": 20
}
]
}