Searched defs:obfuscated (Results 1 - 2 of 2) sorted by relevance

/forgerock/openidm-v4/openidm-crypto/src/main/java/org/forgerock/openidm/crypto/util/
H A DJettyPropertyUtil.java34 * that may need to be encrypted/obfuscated, and/or may be encrypted/obfuscated
40 * Gets a Jetty configuration property. If obfuscated is true, it will
41 * return a value obfuscated in Jetty format.
45 * @param obfuscated
46 * if value should be obfuscated.
49 public static String getProperty(String propName, boolean obfuscated) { argument
54 if (obfuscated) {
71 * string value that will be decrypted/de-obfuscated.
72 * @return decrypted/de-obfuscated valu
[all...]
/forgerock/openidm-v4/openidm-jetty-fragment/src/main/java/org/forgerock/openidm/jetty/
H A DParam.java73 * @return OpenIDM keystore password, obfuscated in Jetty format.
80 * @return OpenIDM keystore key password, obfuscated in Jetty format.
116 * @return the truststore password, obfuscated in Jetty format.
128 * Returns the truststore password in either clear text or obfuscated.
131 * @param obfuscated if the password should be obfuscated.
134 public static String getTruststorePassword(boolean obfuscated) { argument
135 String pwd = JettyPropertyUtil.getProperty("openidm.truststore.password", obfuscated);
137 pwd = getKeystorePassword(obfuscated);
143 * Returns the keystore password in either clear text or obfuscated
148 getKeystorePassword(boolean obfuscated) argument
[all...]

Completed in 47 milliseconds