crypto.getHashes() 메서드는 지원되는 모든 해시 알고리즘의 이름이 포함된 배열을 반환합니다. 크립토 패키지에는 우리가 사용할 수 있는 엄청난 해시 알고리즘 목록이 있습니다. 하지만 가장 많이 사용되는 암호 알고리즘은 'MD5 – Message-Digest Algorithm5'입니다.
구문
crypto.getHashes()
매개변수
모든 해시 알고리즘의 목록을 반환하기 때문입니다. 입력이 필요하지 않습니다.
예시
이름이 getHashes.js인 파일을 만들고 아래 코드 조각을 복사합니다. 파일을 생성한 후 다음 명령을 사용하여 아래 예와 같이 이 코드를 실행하십시오 -
node getHashes.js
getHashes.js
// A node demo program for getting all hash algorithms // Importing the crypto module const crypto = require('crypto'); // Calling the getHashes() method const cipher = crypto.getHashes(); // Printing the list of all the algorithms there is console.log("The list of all hash algorithm are as follows: ", cipher);
출력
C:\home\node>> node getCipher.js The list of all hash algorithm are as follows: [ 'RSA-MD4', 'RSA-MD5', 'RSA-RIPEMD160', 'RSA-SHA1', 'RSA-SHA1-2', 'RSA-SHA224', 'RSA-SHA256', 'RSA-SHA3-224', 'RSA-SHA3-256', 'RSA-SHA3-384', 'RSA-SHA3-512', 'RSA-SHA384', 'RSA-SHA512', 'RSA-SHA512/224', 'RSA-SHA512/256', 'RSA-SM3', 'blake2b512', 'blake2s256', 'id-rsassa-pkcs1-v1_5-with-sha3-224', 'id-rsassa-pkcs1-v1_5-with-sha3-256', 'id-rsassa-pkcs1-v1_5-with-sha3-384', 'id-rsassa-pkcs1-v1_5-with-sha3-512', 'md4', 'md4WithRSAEncryption', 'md5', 'md5-sha1', 'md5WithRSAEncryption', 'ripemd', 'ripemd160', 'ripemd160WithRSA', 'rmd160', 'sha1', 'sha1WithRSAEncryption', 'sha224', 'sha224WithRSAEncryption', 'sha256', 'sha256WithRSAEncryption', 'sha3-224', 'sha3-256', 'sha3-384', 'sha3-512', 'sha384', 'sha384WithRSAEncryption', 'sha512', 'sha512-224', 'sha512-224WithRSAEncryption', 'sha512-256', 'sha512-256WithRSAEncryption', 'sha512WithRSAEncryption', 'shake128', 'shake256', 'sm3', 'sm3WithRSAEncryption', 'ssl3-md5', 'ssl3-sha1', 'whirlpool' ]