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%
A utility tool that reports available cryptographic algorithms in the browser environment.
@generates
/**
* Returns a sorted array of all available hash algorithm names.
*
* @returns {string[]} Array of hash algorithm names, sorted alphabetically
*/
function getAvailableHashes() {
// IMPLEMENTATION HERE
}
/**
* Returns a sorted array of all available cipher algorithm names.
*
* @returns {string[]} Array of cipher algorithm names, sorted alphabetically
*/
function getAvailableCiphers() {
// IMPLEMENTATION HERE
}
/**
* Checks if a hash algorithm is available.
*
* @param {string} algorithm - The hash algorithm name to check
* @returns {boolean} true if the algorithm is available, false otherwise
*/
function isHashSupported(algorithm) {
// IMPLEMENTATION HERE
}
/**
* Checks if a cipher algorithm is available.
*
* @param {string} algorithm - The cipher algorithm name to check
* @returns {boolean} true if the algorithm is available, false otherwise
*/
function isCipherSupported(algorithm) {
// IMPLEMENTATION HERE
}
module.exports = {
getAvailableHashes,
getAvailableCiphers,
isHashSupported,
isCipherSupported,
};Provides browser-compatible cryptographic functionality including algorithm discovery utilities.