Searched refs:PT (Results 1 - 7 of 7) sorted by relevance

/openjdk9/jdk/test/com/sun/crypto/provider/Cipher/AES/
H A DTestCopySafe.java43 private static byte[] PT = new byte[INPUT_LENGTH]; field in class:TestCopySafe
101 byte[] answer = c.doFinal(PT);
102 byte[] pt2 = Arrays.copyOf(PT, answer.length + offset);
109 c.doFinal(pt2, 0, PT.length, pt2, 0);
117 System.arraycopy(PT, 0, pt2, 0, PT.length);
122 c.doFinal(pt2, 0, PT.length, pt2, offset);
130 System.arraycopy(PT, 0, pt2, offset, PT.length);
135 c.doFinal(pt2, offset, PT
[all...]
H A DTestGCMKeyAndIvCheck.java45 private static final byte[] PT = new byte[18]; field in class:TestGCMKeyAndIvCheck
57 c.update(PT);
63 c.doFinal(PT);
77 byte[] ctPlusTag = c.doFinal(PT);
88 if (spec.getTLen() != (ctPlusTag.length - PT.length)*8) {
99 if (!Arrays.equals(recovered, PT)) {
113 c.doFinal(PT);
124 c.doFinal(PT);
136 if (!Arrays.equals(recovered, PT)) {
H A DTestKATForECB_VK.java47 private static byte[] PT = new byte[16]; field in class:TestKATForECB_VK
720 byte[] plainText = PT;
/openjdk9/jdk/test/com/oracle/security/ucrypto/
H A DTestGCMWithSBE.java40 private static final byte[] PT = new byte[32]; field in class:TestGCMWithSBE
62 c.update(PT, 0, PT.length, ONE_BYTE);
65 ct1 = c.update(PT, 0, PT.length);
83 if (spec.getTLen() != (ct1.length + ct2PlusTag.length - PT.length)*8) {
105 if (!Arrays.equals(pt2, PT)) {
H A DTestGCMKeyAndIvCheck.java41 private static final byte[] PT = new byte[33]; field in class:TestGCMKeyAndIvCheck
53 c.update(PT);
59 c.doFinal(PT);
83 byte[] ctPlusTag = c.doFinal(PT);
94 if (spec.getTLen() != (ctPlusTag.length - PT.length)*8) {
105 if (!Arrays.equals(recovered, PT)) {
119 c.doFinal(PT);
134 c.doFinal(PT);
146 if (!Arrays.equals(recovered, PT)) {
/openjdk9/jdk/test/java/util/Calendar/
H A DGenericTimeZoneNamesTest.java28 private static final String[] PT = { field in class:GenericTimeZoneNamesTest
37 for (String tzid : PT) {
39 test(tzid, TimeZone.SHORT, locale, "PT");
/openjdk9/jdk/test/java/util/PluggableLocale/
H A DTimeZoneNameProviderTest.java241 final String PT = "PT"; // SHORT generic name for "America/Los_Angeles" field in class:TimeZoneNameProviderTest
247 if (!PT.equals(generic)) {

Completed in 129 milliseconds