/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/setup/ |
H A D | JCECrypt.java | 137 private static String decode(String encoded, AMEncryption encr) { argument 138 if (encoded == null || encoded.length() == 0) { 146 encData = Base64.decode(encoded.trim()); 167 * Decode an encoded string 169 * @param encoded 170 * The encoded string. 173 public static String decode(String encoded) { argument 174 return decode(encoded, encryptor);
|
/forgerock/openam-v13/openam-shared/src/main/java/com/sun/identity/shared/encode/ |
H A D | Base64.java | 60 public static byte[] decode(char[] encoded) { argument 61 return org.forgerock.util.encode.Base64.decode(encoded); 64 public static byte[] decode(String encoded) { argument 65 return org.forgerock.util.encode.Base64.decode(encoded.toCharArray()); 68 public static byte[] decodeFast(byte[] encoded) { argument 69 return org.forgerock.util.encode.Base64.decodeFast(encoded); 72 public static byte[] decodeFast(char[] encoded) { argument 73 return org.forgerock.util.encode.Base64.decodeFast(encoded); 76 public static byte[] decodeFast(String encoded) { argument 77 return org.forgerock.util.encode.Base64.decodeFast(encoded [all...] |
/forgerock/authenticator-ios-v2/ForgeRock-Authenticator/ |
H A D | base32.c | 23 * The RFC defines that encoding is performed in quantums of 8 encoded 39 * Decode a base32 encoded string into the provided buffer. 44 * Handles padding symbols at the end of the encoded input string. 47 * encoded - A null terminated char* containing the encoded base32 54 int base32_decode(const char *encoded, uint8_t *result, int bufSize) { argument 59 for (; count < bufSize && *encoded; ++encoded) { 60 char ch = *encoded; 102 * If the encoded strin [all...] |
/forgerock/openam/openam-shared/src/main/java/com/sun/identity/shared/encode/ |
H A D | Base64.java | 60 public static byte[] decode(char[] encoded) { argument 61 return org.forgerock.util.encode.Base64.decode(encoded); 64 public static byte[] decode(String encoded) { argument 65 return org.forgerock.util.encode.Base64.decode(encoded.toCharArray()); 68 public static byte[] decodeFast(byte[] encoded) { argument 69 return org.forgerock.util.encode.Base64.decodeFast(encoded); 72 public static byte[] decodeFast(char[] encoded) { argument 73 return org.forgerock.util.encode.Base64.decodeFast(encoded); 76 public static byte[] decodeFast(String encoded) { argument 77 return org.forgerock.util.encode.Base64.decodeFast(encoded [all...] |
/forgerock/openam/openam-core/src/main/java/com/sun/identity/setup/ |
H A D | JCECrypt.java | 137 private static String decode(String encoded, AMEncryption encr) { argument 138 if (encoded == null || encoded.length() == 0) { 146 encData = Base64.decode(encoded.trim()); 167 * Decode an encoded string 169 * @param encoded 170 * The encoded string. 173 public static String decode(String encoded) { argument 174 return decode(encoded, encryptor);
|
/forgerock/authenticator-android-v2/app/src/main/java/com/google/android/apps/authenticator/ |
H A D | Base32String.java | 67 public static byte[] decode(String encoded) throws DecodingException { argument 68 return getInstance().decodeInternal(encoded); 71 protected byte[] decodeInternal(String encoded) throws DecodingException { argument 73 encoded = encoded.trim().replaceAll(SEPARATOR, "").replaceAll(" ", ""); 78 encoded = encoded.replaceFirst("[=]*$", ""); 81 encoded = encoded.toUpperCase(Locale.US); 82 if (encoded [all...] |
/forgerock/openam-v13/openam-common-auth-ui/src/main/java/com/sun/identity/authentication/UI/ |
H A D | AuthViewBeanBase.java | 59 "goto", "encoded", "IDtoken0", "IDtoken1", "IDtoken2", "IDButton", "AMAuthCookie", "IDToken3" 202 * @param encoded value of "encoded" parameter to tell wheather 203 * the inputURL is already encoded or not 207 public String getValidatedInputURL(String inputURL, String encoded, argument 211 if (Boolean.parseBoolean(encoded)) {
|
/forgerock/openam/openam-common-auth-ui/src/main/java/com/sun/identity/authentication/UI/ |
H A D | AuthViewBeanBase.java | 59 "goto", "encoded", "IDtoken0", "IDtoken1", "IDtoken2", "IDButton", "AMAuthCookie", "IDToken3" 202 * @param encoded value of "encoded" parameter to tell wheather 203 * the inputURL is already encoded or not 207 public String getValidatedInputURL(String inputURL, String encoded, argument 211 if (Boolean.parseBoolean(encoded)) {
|
/forgerock/openam-v13/openam-shared/src/main/java/com/iplanet/services/util/ |
H A D | Crypt.java | 196 * The string to be encoded. 197 * @return The encoded string. 209 * The string to be encoded. 210 * @return The encoded string. 221 * @param encoded 225 public static String decrypt(String encoded) { argument 226 return decode(encoded); 234 * @param encoded 238 public static String decryptLocal(String encoded) { argument 239 return decode(encoded, localEncrypto 316 decode(String encoded, AMEncryption encr) argument 374 decode(String encoded) argument [all...] |
H A D | JSSEncryption.java | 58 * The format of the encoded byte before BASE64 encoding is 63 * The rest is the encoded bytes. 254 * @param clearText The string to be encoded. 255 * @return The encoded string. 263 * @param encoded The string to be decoded. 266 public byte[] decrypt(byte[] encoded){ argument 267 return decode(encoded); 272 * @param clearText The string to be encoded. 273 * @return The encoded string. 311 * Decode an encoded strin 316 decode(byte[] encoded) argument [all...] |
/forgerock/openam/openam-shared/src/main/java/com/iplanet/services/util/ |
H A D | Crypt.java | 196 * The string to be encoded. 197 * @return The encoded string. 209 * The string to be encoded. 210 * @return The encoded string. 221 * @param encoded 225 public static String decrypt(String encoded) { argument 226 return decode(encoded); 234 * @param encoded 238 public static String decryptLocal(String encoded) { argument 239 return decode(encoded, localEncrypto 316 decode(String encoded, AMEncryption encr) argument 374 decode(String encoded) argument [all...] |
/forgerock/web-agents-v4/source/apache/ |
H A D | agent.c | 529 char *encoded = base64_encode(rq->post_data, &data_sz); local 530 if (encoded != NULL) { 531 apr_table_set(r->notes, amagent_post_filter_name, encoded); 540 free(encoded);
|
/forgerock/web-agents-v4/source/varnish/ |
H A D | agent.c | 518 char *encoded = base64_encode(ar->post_data, &data_sz); local 519 if (encoded != NULL) { 520 req->notes = encoded;
|
/forgerock/web-agents-v4/source/varnish3/ |
H A D | agent.c | 568 char *encoded = base64_encode(ar->post_data, &data_sz); local 569 if (encoded != NULL) { 570 req->notes = encoded;
|
/forgerock/web-agents-v4/tests/ |
H A D | test_utility.c | 333 char* encoded = base64_encode(in, &length); local 334 assert_non_null(encoded); 335 assert_string_equal(encoded, out); 344 encoded = base64_encode(richard3, &length); 345 decoded = base64_decode(encoded, &length); 347 assert_string_equal(encoded, r3_out); 387 char* encoded = base64_encode(key, &length); local 388 assert_non_null(encoded); 389 encrypt_password(encoded, &result); 395 decrypt_password(encoded, 521 char* encoded = url_encode(buff); local [all...] |
/forgerock/openam-v13/openam-oauth/samples/StockClient/lib/ |
H A D | oauth-signature-1.1.5-ea-SNAPSHOT.jar | META-INF/ META-INF/MANIFEST.MF META-INF/services/ com/ com/sun/ com/sun/jersey/ ... |
H A D | jersey-core-1.1.1-ea-SNAPSHOT.jar | META-INF/ META-INF/MANIFEST.MF com/ com/sun/ com/sun/jersey/ com/sun/jersey/api/ ... |
/forgerock/openam-v13/openam-oauth/samples/StockService/lib/ |
H A D | oauth-signature-1.1.5-ea-SNAPSHOT.jar | META-INF/ META-INF/MANIFEST.MF META-INF/services/ com/ com/sun/ com/sun/jersey/ ... |
H A D | jersey-core-1.1.1-ea-SNAPSHOT.jar | META-INF/ META-INF/MANIFEST.MF com/ com/sun/ com/sun/jersey/ com/sun/jersey/api/ ... |
/forgerock/web-agents-v4/source/ |
H A D | admin.c | 240 char *encoded = NULL, key[37]; local 243 encoded = base64_encode(key, &sz); 244 fprintf(stdout, "\nEncryption key value: %s\n\n", encoded); 245 am_free(encoded); 418 char* encoded; local 474 encoded = base64_encode(key, &sz); 475 install_log("updating %s with %s", AM_INSTALL_KEY, encoded); 476 rv = string_replace(&agent_conf_template, AM_INSTALL_KEY, encoded, &agent_conf_template_sz); 479 am_free(encoded); 486 am_free(encoded); [all...] |
/forgerock/authenticator-android-v2/app/libs/ |
H A D | core-2.3.0.jar | META-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ... |
/forgerock/opendj2/ext/svnkit/lib/ |
H A D | trilead-ssh2-1.0.0-build217.jar | META-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt com/ com/trilead/ com/ ... |
/forgerock/opendj-b2.6/ext/svnkit/ |
H A D | trilead.jar | META-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt com/ com/trilead/ com/ ... |
/forgerock/opendj2.6.2/ext/svnkit/ |
H A D | trilead.jar | META-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt com/ com/trilead/ com/ ... |
/forgerock/opendj2-hg/ext/svnkit/lib/ |
H A D | trilead-ssh2-1.0.0-build217.jar | META-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt com/ com/trilead/ com/ ... |