/prebuilts/go/darwin-x86/src/crypto/rsa/ |
pss.go | 23 sLen := len(salt) 36 // 3. If emLen < hLen + sLen + 2, output "encoding error" and stop. 38 if emLen < hLen+sLen+2 { 43 db := em[:emLen-sLen-hLen-2+1+sLen] 44 h := em[emLen-sLen-hLen-2+1+sLen : emLen-1] 46 // 4. Generate a random octet string salt of length sLen; if sLen = 0, 52 // M' is an octet string of length 8 + hLen + sLen with eigh [all...] |
/prebuilts/go/linux-x86/src/crypto/rsa/ |
pss.go | 23 sLen := len(salt) 36 // 3. If emLen < hLen + sLen + 2, output "encoding error" and stop. 38 if emLen < hLen+sLen+2 { 43 db := em[:emLen-sLen-hLen-2+1+sLen] 44 h := em[emLen-sLen-hLen-2+1+sLen : emLen-1] 46 // 4. Generate a random octet string salt of length sLen; if sLen = 0, 52 // M' is an octet string of length 8 + hLen + sLen with eigh [all...] |
/external/javassist/src/main/javassist/bytecode/ |
ByteStream.java | 98 int sLen = s.length(); 100 enlarge(sLen + 2); 103 buffer[pos++] = (byte)(sLen >>> 8); 104 buffer[pos++] = (byte)sLen; 105 for (int i = 0; i < sLen; ++i) { 110 writeUTF2(s, sLen, i); 118 private void writeUTF2(String s, int sLen, int offset) { 119 int size = sLen; 120 for (int i = offset; i < sLen; i++) { 130 "encoded string too long: " + sLen + size + " bytes") [all...] |
/external/boringssl/src/crypto/rsa/ |
padding.c | 495 const uint8_t *EM, int sLen) { 512 /* Negative sLen has special meanings: 513 * -1 sLen == hLen 516 if (sLen == -1) { 517 sLen = hLen; 518 } else if (sLen == -2) { 519 sLen = -2; 520 } else if (sLen < -2) { 535 if (emLen < ((int)hLen + sLen + 2)) { 536 /* sLen can be small negative * [all...] |
/external/libchrome/crypto/third_party/nss/ |
rsawrapr.c | 76 unsigned int sLen) 89 if ((emLen < (hash->length + sLen + 2)) || 114 for (i = 0; i < (dbMaskLen - sLen - 1); i++) { 121 if (db[dbMaskLen - sLen - 1] != 0x01) { 144 (*hash->update)(hash_context, &db[dbMaskLen - sLen], sLen);
|
chromium-nss.h | 54 unsigned int sLen);
|
/external/icu/icu4c/source/samples/legacy/ |
newcol.cpp | 27 int32_t getSortKey_current(const char *locale, const UChar *string, int32_t sLen, uint8_t *buffer, int32_t bLen) { 33 int32_t result = ucol_getSortKey(coll, string, sLen, buffer, bLen);
|
oldcol.cpp | 28 int32_t getSortKey_legacy(const char *locale, const UChar *string, int32_t sLen, uint8_t *buffer, int32_t bLen) { 34 int32_t result = ucol_getSortKey(coll, string, sLen, buffer, bLen);
|
/external/icu/icu4c/source/test/cintltst/ |
nfsprep.c | 216 int32_t pLen=0, sLen=0, reqLen=0, 247 sLen = nfs4_prepare(suffix, suffixLen, s, sCapacity, NFS4_MIXED_PREP_SUFFIX, parseError, status); 255 sLen = nfs4_prepare(suffix, suffixLen, s, sLen, NFS4_MIXED_PREP_SUFFIX, parseError, status); 258 reqLen = pLen+sLen+1 /* for the delimiter */; 264 memmove(dest+pLen, s, sLen);
|
callcoll.c | 230 static UCollationResult compareUsingPartials(UCollator *coll, const UChar source[], int32_t sLen, const UChar target[], int32_t tLen, int32_t pieceSize, UErrorCode *status) { 246 uiter_setString(&sIter, source, sLen); 274 uint32_t sLen = u_strlen(source); 283 compareResult = ucol_strcoll(myCollation, source, sLen, target, tLen); 294 uiter_setString(&sIter, source, sLen); 306 u_strToUTF8(utf8Source, 256, &utf8SourceLen, source, sLen, &status); 375 partialSKResult = compareUsingPartials(myCollation, source, sLen, target, tLen, partialSizes[i], &status); 385 partialNormalizedSKResult = compareUsingPartials(myCollation, source, sLen, target, tLen, partialSizes[i], &status); 396 sortklen1=ucol_getSortKey(myCollation, source, sLen, NULL, 0); 405 ucol_getSortKey(myCollation, source, sLen, sortKey1, sortklen1+1) [all...] |
cmsccoll.c | 49 const UChar *source, const int sLen, 971 int sLen; 1000 /*for (sLen = 257; sLen<MAXSLEN; sLen++) {*/ 1001 /*for (sLen = 4; sLen<MAXSLEN; sLen++) {*/ 1002 /*for (sLen = 1000; sLen<1001; sLen++) {* [all...] |
/external/icu/icu4c/source/test/intltest/ |
tscoll.h | 52 UCollationResult compareUsingPartials(UCollator *coll, const UChar source[], int32_t sLen, const UChar target[], int32_t tLen, int32_t pieceSize, UErrorCode &status);
|
tscoll.cpp | 92 IntlTestCollator::compareUsingPartials(UCollator *coll, const UChar source[], int32_t sLen, const UChar target[], int32_t tLen, int32_t pieceSize, UErrorCode &status) { 103 uiter_setString(&sIter, source, sLen); 146 int32_t sLen = source.length(), tLen = target.length(); 153 uiter_setString(&sIter, src, sLen); 164 u_strToUTF8(utf8Source, 256, &utf8SourceLen, src, sLen, &status); 175 /*uiter_setString(&sIter, source, sLen); 211 partialSKResult = compareUsingPartials(myCollation, src, sLen, trg, tLen, partialSizes[i], status); 219 partialNormalizedSKResult = compareUsingPartials(myCollation, src, sLen, trg, tLen, partialSizes[i], status);
|
/external/icu/icu4c/source/tools/toolutil/ |
uparse.c | 364 u_parseUTF8(const char *source, int32_t sLen, char *dest, int32_t destCapacity, UErrorCode *status) { 368 if(sLen == -1) { 369 sLen = (int32_t)strlen(source); 372 while(read < source+sLen) {
|
uparse.h | 147 u_parseUTF8(const char *source, int32_t sLen, char *dest, int32_t destCapacity, UErrorCode *status);
|
/external/boringssl/src/include/openssl/ |
rsa.h | 299 * hash function for generating the mask. If NULL, |Hash| is used. The |sLen| 300 * argument specifies the expected salt length in bytes. If |sLen| is -1 then 308 const uint8_t *EM, int sLen); 313 * function for generating the mask. If NULL, |Hash| is used. The |sLen| 314 * argument specifies the expected salt length in bytes. If |sLen| is -1 then 323 int sLen);
|
/sdk/find_java2/src/ |
JavaFinder.cpp | 526 ULONG sLen = MAX_PATH;
528 if (rk.QueryStringValue(JF_REGISTRY_VALUE_PATH, s, &sLen) == ERROR_SUCCESS) {
|
/hardware/ti/omap4-aah/security/tf_sdk/include/ |
pkcs11.h | 363 CK_ULONG sLen;
|
/hardware/ti/omap4xxx/security/tf_sdk/include/ |
pkcs11.h | 363 CK_ULONG sLen;
|
/prebuilts/tools/common/m2/repository/org/parboiled/parboiled-core/1.0.2/ |
parboiled-core-1.0.2.jar | |
/prebuilts/tools/common/m2/repository/xpp3/xpp3_min/1.1.4c/ |
xpp3_min-1.1.4c.jar | |
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/ |
CollationMiscTest.java | [all...] |
/external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/ |
CollationMiscTest.java | [all...] |
/prebuilts/tools/common/m2/repository/org/gebish/geb-core/0.9.3/ |
geb-core-0.9.3.jar | |
/prebuilts/tools/common/lombok-ast/ |
lombok-ast-0.2.1.jar | |