本文整理汇总了Java中org.bouncycastle.pqc.math.linearalgebra.ByteUtils.toHexString方法的典型用法代码示例。如果您正苦于以下问题:Java ByteUtils.toHexString方法的具体用法?Java ByteUtils.toHexString怎么用?Java ByteUtils.toHexString使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.bouncycastle.pqc.math.linearalgebra.ByteUtils
的用法示例。
在下文中一共展示了ByteUtils.toHexString方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getSha3Hash
import org.bouncycastle.pqc.math.linearalgebra.ByteUtils; //导入方法依赖的package包/类
public static String getSha3Hash(String data) {
String trimmedData = trimNewLines(data);
byte[] dataBytes = trimmedData.getBytes();
SHA3Digest md = new SHA3Digest(256);
md.reset();
md.update(dataBytes, 0, dataBytes.length);
byte[] hashedBytes = new byte[256 / 8];
md.doFinal(hashedBytes, 0);
String sha3Hash = ByteUtils.toHexString(hashedBytes);
return sha3Hash;
}
示例2: generateRandomKey
import org.bouncycastle.pqc.math.linearalgebra.ByteUtils; //导入方法依赖的package包/类
public RandomKey generateRandomKey () throws ValidationException
{
byte[] entropy = new byte[16];
random.nextBytes (entropy);
return new RandomKey (BIP39.encode (entropy, ""),
ByteUtils.toHexString (ExtendedKey.create (entropy).getKey (0).getPublic ()));
}
示例3: matches
import org.bouncycastle.pqc.math.linearalgebra.ByteUtils; //导入方法依赖的package包/类
private boolean matches(byte[] decrypted, String hexExpected) {
// Convert byte to hex string
String hexString = ByteUtils.toHexString(decrypted);
hexExpected = hexExpected.replaceAll(" ", "");
return hexString.startsWith(hexExpected);// Cause of trailing zeroes
}