Home | History | Annotate | Download | only in spec

Lines Matching refs:encodedKey

48         byte[] encodedKey = new byte[] {(byte)1,(byte)2,(byte)3,(byte)4};
50 EncodedKeySpec eks = new X509EncodedKeySpec(encodedKey);
66 byte[] encodedKey = new byte[] {(byte)1,(byte)2,(byte)3,(byte)4};
68 X509EncodedKeySpec eks = new X509EncodedKeySpec(encodedKey);
72 assertTrue(Arrays.equals(encodedKey, ek));
80 byte[] encodedKey = new byte[] {(byte)1,(byte)2,(byte)3,(byte)4};
82 X509EncodedKeySpec meks = new X509EncodedKeySpec(encodedKey);
94 byte[] encodedKey = new byte[] {(byte)1,(byte)2,(byte)3,(byte)4};
96 byte[] encodedKeyCopy = encodedKey.clone();
108 assertTrue(Arrays.equals(encodedKey, ek));
118 byte[] encodedKey = new byte[] {(byte)1,(byte)2,(byte)3,(byte)4};
120 byte[] encodedKeyCopy = encodedKey.clone();
134 assertTrue(Arrays.equals(encodedKey, ek1));