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 criteria evaluates how well the engineer uses crypto-browserify's RSA encryption functions to implement two distinct security patterns: confidentiality (encrypting with public key, decrypting with private key) and authenticity (encrypting with private key, decrypting with public key).",
"type": "weighted_checklist",
"checklist": [
{
"name": "publicEncrypt usage",
"description": "Uses crypto.publicEncrypt() to implement confidential encryption in the encryptConfidential function",
"max_score": 25
},
{
"name": "privateDecrypt usage",
"description": "Uses crypto.privateDecrypt() to implement confidential decryption in the decryptConfidential function",
"max_score": 25
},
{
"name": "privateEncrypt usage",
"description": "Uses crypto.privateEncrypt() to implement authenticated encryption in the encryptAuthenticated function",
"max_score": 25
},
{
"name": "publicDecrypt usage",
"description": "Uses crypto.publicDecrypt() to implement authenticated decryption in the decryptAuthenticated function",
"max_score": 25
}
]
}