Home | History | Annotate | Download | only in spec

Lines Matching refs:encodedKey

42         byte[] encodedKey = new byte[] { (byte) 1, (byte) 2, (byte) 3, (byte) 4 };
43 EncodedKeySpec eks = new MyEncodedKeySpec(encodedKey);
45 assertTrue("wrong encoded key was returned", Arrays.equals(encodedKey,
49 encodedKey = null;
51 eks = new MyEncodedKeySpec(encodedKey);
63 byte[] encodedKey = new byte[] { (byte) 1, (byte) 2, (byte) 3, (byte) 4 };
64 EncodedKeySpec meks = new MyEncodedKeySpec(encodedKey);
71 for (int i = 0; i < encodedKey.length; i++) {
72 if (encodedKey[i] != ek[i]) {
87 byte[] encodedKey = new byte[] { (byte) 1, (byte) 2, (byte) 3, (byte) 4 };
89 EncodedKeySpec meks = new MyEncodedKeySpec(encodedKey);
92 encodedKey[3] = (byte) 5;
107 byte[] encodedKey = new byte[] { (byte) 1, (byte) 2, (byte) 3, (byte) 4 };
108 EncodedKeySpec meks = new MyEncodedKeySpec(encodedKey);