Home
last modified time | relevance | path

Searched refs:propName (Results 1 – 5 of 5) sorted by relevance

/libcore/luni/src/test/java/tests/security/cert/
DCertPathBuilder2Test.java83 String propName = CertPathBuilder1Test.DEFAULT_TYPE_PROPERTY; in checkResult() local
86 Security.setProperty(propName, invalidValues[i]); in checkResult()
92 Security.setProperty(propName, dt); in checkResult()
DCertPathValidator1Test.java102 String propName = "certpathvalidator.type"; in testCertPathValidator01() local
103 String defCPV = Security.getProperty(propName); in testCertPathValidator01()
114 Security.setProperty(propName, defaultType); in testCertPathValidator01()
116 resType = Security.getProperty(propName); in testCertPathValidator01()
DCertPathValidator2Test.java83 String propName = "certpathvalidator.type"; in checkResult() local
85 Security.setProperty(propName, invalidValues[i]); in checkResult()
89 Security.setProperty(propName, dt); in checkResult()
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
DKeyStoreTest.java187 String propName = "keystore.type"; in testKeyStore01() local
188 String defKSType = Security.getProperty(propName); in testKeyStore01()
198 Security.setProperty(propName, defaultType); in testKeyStore01()
200 resType = Security.getProperty(propName); in testKeyStore01()
/libcore/luni/src/main/java/java/security/
DSecurity.java92 public static String getAlgorithmProperty(String algName, String propName) { in getAlgorithmProperty() argument
93 if (algName == null || propName == null) { in getAlgorithmProperty()
96 String prop = "Alg." + propName + "." + algName; in getAlgorithmProperty()