Searched refs:HexToBytes (Results 1 - 2 of 2) sorted by relevance

/openjdk10/jdk/test/com/sun/crypto/provider/Cipher/AES/
H A DTestKATForGCM.java46 private static byte[] HexToBytes(String hexVal) { method in class:TestKATForGCM
68 this.key = new SecretKeySpec(HexToBytes(key), "AES");
69 this.plainText = HexToBytes(pt);
70 this.aad = HexToBytes(aad);
71 this.cipherText = HexToBytes(ct);
72 this.tag = HexToBytes(tag);
73 this.spec = new GCMParameterSpec(this.tag.length * 8, HexToBytes(iv));
/openjdk10/jdk/test/com/oracle/security/ucrypto/
H A DTestKATForGCM.java44 private static byte[] HexToBytes(String hexVal) { method in class:TestKATForGCM
66 this.key = new SecretKeySpec(HexToBytes(key), "AES");
67 this.plainText = HexToBytes(pt);
68 this.aad = HexToBytes(aad);
69 this.cipherText = HexToBytes(ct);
70 this.tag = HexToBytes(tag);
71 this.spec = new GCMParameterSpec(this.tag.length * 8, HexToBytes(iv));

Completed in 46 milliseconds