/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/utils/ |
H A D | Alphabet.java | 37 final private String chars; field in class:Alphabet 39 Alphabet(String chars) { argument 40 this.chars = chars; 49 return chars;
|
H A D | RecoveryCodeGenerator.java | 85 String chars = alphabet.getChars(); 88 codeBuilder.append(chars.charAt(secureRandom.nextInt(chars.length())));
|
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/common/ |
H A D | SAMLSiteID.java | 90 char chars[] = siteURL.toCharArray(); 91 byte bytes[] = new byte[chars.length]; 92 for (int i = 0; i < chars.length; i++) { 93 bytes[i] = (byte) chars[i];
|
H A D | SAMLUtilsCommon.java | 255 char[] chars = s.toCharArray(); 256 int len = chars.length; 259 char c = chars[i]; 304 char chars[] = new char[bytes.length]; 306 chars[i] = (char) bytes[i]; 308 return new String(chars);
|
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/common/ |
H A D | SAMLSiteID.java | 90 char chars[] = siteURL.toCharArray(); 91 byte bytes[] = new byte[chars.length]; 92 for (int i = 0; i < chars.length; i++) { 93 bytes[i] = (byte) chars[i];
|
H A D | SAMLUtilsCommon.java | 255 char[] chars = s.toCharArray(); 256 int len = chars.length; 259 char c = chars[i]; 304 char chars[] = new char[bytes.length]; 306 chars[i] = (char) bytes[i]; 308 return new String(chars);
|
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/dpro/session/ |
H A D | SessionID.java | 575 char[] chars = new char[length]; 579 chars[i] = '-'; 581 chars[i] = '_'; 583 chars[i] = '.'; 585 chars[i] = '*'; 587 chars[i] = '*'; 589 chars[i] = c; 592 return new String(chars); 619 char[] chars = new char[length]; 624 chars[ [all...] |
/forgerock/openam/openam-core/src/main/java/com/iplanet/dpro/session/ |
H A D | SessionID.java | 579 char[] chars = new char[length]; 583 chars[i] = '-'; 585 chars[i] = '_'; 587 chars[i] = '.'; 589 chars[i] = '*'; 591 chars[i] = '*'; 593 chars[i] = c; 596 return new String(chars); 623 char[] chars = new char[length]; 628 chars[ [all...] |
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/sm/flatfile/ |
H A D | SMSFlatFileObjectBase.java | 303 char[] chars = v.toCharArray(); 304 StringBuilder sb = new StringBuilder(chars.length+20); 306 for (i = 0; i < chars.length; i++) { 307 if (chars[i] == '%') { 309 sb.append(chars, lastIdx, i-lastIdx); 314 else if (chars[i] == ',') { 316 sb.append(chars, lastIdx, i-lastIdx); 323 sb.append(chars, lastIdx, i-lastIdx); 369 char[] chars = v.toCharArray(); 370 StringBuilder sb = new StringBuilder(chars [all...] |
/forgerock/openam/openam-core/src/main/java/com/sun/identity/sm/flatfile/ |
H A D | SMSFlatFileObjectBase.java | 303 char[] chars = v.toCharArray(); 304 StringBuilder sb = new StringBuilder(chars.length+20); 306 for (i = 0; i < chars.length; i++) { 307 if (chars[i] == '%') { 309 sb.append(chars, lastIdx, i-lastIdx); 314 else if (chars[i] == ',') { 316 sb.append(chars, lastIdx, i-lastIdx); 323 sb.append(chars, lastIdx, i-lastIdx); 369 char[] chars = v.toCharArray(); 370 StringBuilder sb = new StringBuilder(chars [all...] |
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/plugin/configuration/impl/ |
H A D | FedletConfigurationImpl.java | 391 char[] chars = v.toCharArray(); 392 StringBuffer sb = new StringBuffer(chars.length); 394 for (i = 0; i < chars.length; i++) { 395 if (chars[i] == '%' && i+2 < chars.length && chars[i+1] == '2') { 397 sb.append(chars, lastIdx, i-lastIdx); 399 if (chars[i+2] == 'C') { 402 else if (chars[i+2] == '5') { 406 sb.append(chars, [all...] |
/forgerock/web-agents-v4/zlib/ |
H A D | gzlib.c | 40 DWORD chars = FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM local 48 if (chars != 0) { 50 if (chars >= 2 51 && msgbuf[chars - 2] == '\r' && msgbuf[chars - 1] == '\n') { 52 chars -= 2; 53 msgbuf[chars] = 0; 56 if (chars > sizeof (buf) - 1) { 57 chars = sizeof (buf) - 1; 58 msgbuf[chars] [all...] |
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/plugin/configuration/impl/ |
H A D | FedletConfigurationImpl.java | 391 char[] chars = v.toCharArray(); 392 StringBuffer sb = new StringBuffer(chars.length); 394 for (i = 0; i < chars.length; i++) { 395 if (chars[i] == '%' && i+2 < chars.length && chars[i+1] == '2') { 397 sb.append(chars, lastIdx, i-lastIdx); 399 if (chars[i+2] == 'C') { 402 else if (chars[i+2] == '5') { 406 sb.append(chars, [all...] |
/forgerock/opendj2/src/dsml/org/opends/dsml/protocol/ |
H A D | ByteStringUtility.java | 118 CharBuffer chars = decoder.decode(bs.asByteBuffer()); 119 return chars.toString();
|
/forgerock/opendj-b2.6/src/dsml/org/opends/dsml/protocol/ |
H A D | ByteStringUtility.java | 119 CharBuffer chars = decoder.decode(bs.asByteBuffer()); 120 return chars.toString();
|
/forgerock/opendj2.6.2/src/dsml/org/opends/dsml/protocol/ |
H A D | ByteStringUtility.java | 119 CharBuffer chars = decoder.decode(bs.asByteBuffer()); 120 return chars.toString();
|
/forgerock/opendj2-hg/src/dsml/org/opends/dsml/protocol/ |
H A D | ByteStringUtility.java | 118 CharBuffer chars = decoder.decode(bs.asByteBuffer()); 119 return chars.toString();
|
/forgerock/opendj2-jel-hg/src/dsml/org/opends/dsml/protocol/ |
H A D | ByteStringUtility.java | 119 CharBuffer chars = decoder.decode(bs.asByteBuffer()); 120 return chars.toString();
|
/forgerock/openam/openam-federation/OpenFM/src/main/java/com/sun/identity/workflow/ |
H A D | CreateFedlet.java | 351 char[] chars = v.toCharArray(); 352 StringBuilder sb = new StringBuilder(chars.length + 20); 354 for (i = 0; i < chars.length; i++) { 355 if (chars[i] == '%') { 357 sb.append(chars, lastIdx, i - lastIdx); 361 } else if (chars[i] == ',') { 363 sb.append(chars, lastIdx, i - lastIdx); 370 sb.append(chars, lastIdx, i - lastIdx);
|
/forgerock/openam-v13/openam-federation/openam-idpdiscovery/src/main/java/com/sun/identity/saml2/idpdiscovery/ |
H A D | CookieWriterServlet.java | 369 char chars[] = providerURL.toCharArray(); 370 byte bytes[] = new byte[chars.length]; 371 for (int i = 0; i < chars.length; i++) { 372 bytes[i] = (byte) chars[i];
|
/forgerock/openam/openam-federation/openam-idpdiscovery/src/main/java/com/sun/identity/saml2/idpdiscovery/ |
H A D | CookieWriterServlet.java | 369 char chars[] = providerURL.toCharArray(); 370 byte bytes[] = new byte[chars.length]; 371 for (int i = 0; i < chars.length; i++) { 372 bytes[i] = (byte) chars[i];
|
/forgerock/openam-v13/openam-federation/OpenFM/src/main/java/com/sun/identity/workflow/ |
H A D | CreateFedlet.java | 483 char[] chars = v.toCharArray(); 484 StringBuilder sb = new StringBuilder(chars.length + 20); 486 for (i = 0; i < chars.length; i++) { 487 if (chars[i] == '%') { 489 sb.append(chars, lastIdx, i - lastIdx); 493 } else if (chars[i] == ',') { 495 sb.append(chars, lastIdx, i - lastIdx); 502 sb.append(chars, lastIdx, i - lastIdx);
|
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/policy/plugins/ |
H A D | SuffixResourceName.java | 275 char[] chars = new char[strlen]; 277 chars[i] = str.charAt(strlen - i -1); 279 return (new String(chars));
|
/forgerock/openam/openam-core/src/main/java/com/sun/identity/policy/plugins/ |
H A D | SuffixResourceName.java | 275 char[] chars = new char[strlen]; 277 chars[i] = str.charAt(strlen - i -1); 279 return (new String(chars));
|
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/common/ |
H A D | SAML2SDKUtils.java | 395 char chars[] = new char[bytes.length]; 397 chars[i] = (char) bytes[i]; 399 return new String(chars); 509 char chars[] = input.toCharArray(); 510 byte bytes[] = new byte[chars.length]; 511 for (int i = 0; i < chars.length; i++) { 512 bytes[i] = (byte) chars[i];
|