Home
last modified time | relevance | path

Searched refs:SECRET (Results 1 – 3 of 3) sorted by relevance

/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
DKeyRepTest.java40 assertNotNull(new KeyRep(KeyRep.Type.SECRET, "", "", new byte[] {})); in testKeyRep01()
52 new KeyRep(KeyRep.Type.SECRET, null, "", new byte[] {}); in testKeyRep02()
69 KeyRepChild kr = new KeyRepChild(KeyRep.Type.SECRET, "", "", new byte[] {}); in testReadResolve01()
76 kr = new KeyRepChild(KeyRep.Type.SECRET, "", "X.509", new byte[] {}); in testReadResolve01()
83 kr = new KeyRepChild(KeyRep.Type.SECRET, "", "RAW", new byte[] {}); in testReadResolve01()
DKeyRepTypeTest.java54 assertEquals(KeyRep.Type.SECRET, KeyRep.Type.valueOf(KeyRep.Type.SECRET in testValueOf()
62 KeyRep.Type[] types = new KeyRep.Type[] { KeyRep.Type.SECRET, in testValues()
/libcore/ojluni/src/main/java/java/security/
DKeyRep.java70 SECRET, enumConstant
171 if (type == Type.SECRET && RAW.equals(format)) { in readResolve()