我需要将 Java 中的函数转换为 Node JS
public byte[] GetId() throws NoSuchAlgorithmException {
byte[] byArray = new byte[4];
byte[] byArray2 = new byte[8];
SecureRandom secureRandom = SecureRandom.getInstance("SHA1PRNG");
secureRandom.nextBytes(byArray);
secureRandom.nextBytes(byArray2);
return byArray2;
}
那么secureRandom.getInstance 和nextBytes 与Javascript 的等价性是什么?
我需要使用加密库吗?像:
crypto.randomBytes(8)
?