Searched refs:sLen (Results 1 - 19 of 19) sorted by relevance

/macosx-10.10/OpenSSL098-52/src/crypto/rsa/
H A Drsa_pss.c74 const EVP_MD *Hash, const unsigned char *EM, int sLen)
86 * Negative sLen has special meanings:
87 * -1 sLen == hLen
91 if (sLen == -1) sLen = hLen;
92 else if (sLen == -2) sLen = -2;
93 else if (sLen < -2)
111 if (emLen < (hLen + sLen + 2)) /* sLen ca
73 RSA_verify_PKCS1_PSS(RSA *rsa, const unsigned char *mHash, const EVP_MD *Hash, const unsigned char *EM, int sLen) argument
169 RSA_padding_add_PKCS1_PSS(RSA *rsa, unsigned char *EM, const unsigned char *mHash, const EVP_MD *Hash, int sLen) argument
[all...]
H A Drsa.h382 const EVP_MD *Hash, const unsigned char *EM, int sLen);
385 const EVP_MD *Hash, int sLen);
/macosx-10.10/ICU-531.30/icuSources/samples/legacy/
H A Dnewcol.cpp27 int32_t getSortKey_current(const char *locale, const UChar *string, int32_t sLen, uint8_t *buffer, int32_t bLen) { argument
33 int32_t result = ucol_getSortKey(coll, string, sLen, buffer, bLen);
H A Doldcol.cpp28 int32_t getSortKey_legacy(const char *locale, const UChar *string, int32_t sLen, uint8_t *buffer, int32_t bLen) { argument
34 int32_t result = ucol_getSortKey(coll, string, sLen, buffer, bLen);
/macosx-10.10/ICU-531.30/icuSources/test/cintltst/
H A Dnfsprep.c216 int32_t pLen=0, sLen=0, reqLen=0, local
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);
H A Dcallcoll.c230 static UCollationResult compareUsingPartials(UCollator *coll, const UChar source[], int32_t sLen, const UChar target[], int32_t tLen, int32_t pieceSize, UErrorCode *status) { argument
246 uiter_setString(&sIter, source, sLen);
274 uint32_t sLen = u_strlen(source); local
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, sortKey
[all...]
H A Dcmsccoll.c49 const UChar *source, const int sLen,
971 int sLen; local
1000 /*for (sLen = 257; sLen<MAXSLEN; sLen++) {*/
1001 /*for (sLen = 4; sLen<MAXSLEN; sLen++) {*/
1002 /*for (sLen = 1000; sLen<100
2755 int32_t sLen = 0, tLen = 0; local
3582 int32_t rLen, tLen, ruleLen, sLen, kLen; local
[all...]
/macosx-10.10/Security-57031.1.35/Security/include/security_cryptkit/
H A DfeePublicKey.c998 unsigned sLen; local
1002 sLen = (4 * sizeof(int)) + // magic, version, minVersion,
1007 sLen += lengthOfByteRepGiant(pkinst->privGiant);
1012 sLen += (lengthOfByteRepKey(pkinst->plus) +
1016 *keyBlob = s = (unsigned char*) fmalloc(sLen);
1036 *keyBlobLen = sLen;
1051 unsigned sLen; // bytes remaining in *s local
1059 sLen = keyBlobLen;
1060 if(sLen < (4 * sizeof(int))) { // magic, version, minVersion, spare
1070 sLen
[all...]
/macosx-10.10/Security-57031.1.35/Security/libsecurity_cryptkit/lib/
H A DfeePublicKey.c998 unsigned sLen; local
1002 sLen = (4 * sizeof(int)) + // magic, version, minVersion,
1007 sLen += lengthOfByteRepGiant(pkinst->privGiant);
1012 sLen += (lengthOfByteRepKey(pkinst->plus) +
1016 *keyBlob = s = (unsigned char*) fmalloc(sLen);
1036 *keyBlobLen = sLen;
1051 unsigned sLen; // bytes remaining in *s local
1059 sLen = keyBlobLen;
1060 if(sLen < (4 * sizeof(int))) { // magic, version, minVersion, spare
1070 sLen
[all...]
/macosx-10.10/ICU-531.30/icuSources/test/intltest/
H A Dtscoll.h52 UCollationResult compareUsingPartials(UCollator *coll, const UChar source[], int32_t sLen, const UChar target[], int32_t tLen, int32_t pieceSize, UErrorCode &status);
H A Dtscoll.cpp92 IntlTestCollator::compareUsingPartials(UCollator *coll, const UChar source[], int32_t sLen, const UChar target[], int32_t tLen, int32_t pieceSize, UErrorCode &status) { argument
103 uiter_setString(&sIter, source, sLen);
146 int32_t sLen = source.length(), tLen = target.length(); local
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);
/macosx-10.10/ICU-531.30/icuSources/tools/toolutil/
H A Duparse.c364 u_parseUTF8(const char *source, int32_t sLen, char *dest, int32_t destCapacity, UErrorCode *status) { argument
368 if(sLen == -1) {
369 sLen = (int32_t)strlen(source);
372 while(read < source+sLen) {
H A Duparse.h147 u_parseUTF8(const char *source, int32_t sLen, char *dest, int32_t destCapacity, UErrorCode *status);
/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/compat/libtiff/libtiff/
H A Dtif_apple.c152 int sLen = strlen( inString ); local
153 BlockMoveData( inString, &inString[1], sLen );
154 inString[0] = sLen;
/macosx-10.10/CommonCrypto-60061/cn_tool/
H A Dmain.c424 size_t sLen = strlen(context->string); local
425 status = CNCRC(context->alg, context->string, sLen, &crc);
428 context->totalBytes = sLen;
518 size_t sLen = strlen(context->string); local
519 encodedSize = CNEncoderGetOutputLengthFromEncoding(context->alg, direction, sLen);
524 CNEncode(context->alg, direction, context->string, sLen, encodeBuf, &encodedSize);
529 context->totalBytes = sLen;
/macosx-10.10/OpenSSL098-52/src/include/openssl/
H A Drsa.h382 const EVP_MD *Hash, const unsigned char *EM, int sLen);
385 const EVP_MD *Hash, int sLen);
/macosx-10.10/Security-57031.1.35/Security/authd/
H A Dengine.c902 size_t sLen = strlen(string); local
904 char * buf = calloc(1u, sLen + 1);
905 strlcpy(buf, string, sLen + 1);
906 char * ptr = buf + sLen;
/macosx-10.10/bind9-45.101/bind9/bin/pkcs11/include/
H A Dpkcs11t.h1323 CK_ULONG sLen; member in struct:CK_RSA_PKCS_PSS_PARAMS
/macosx-10.10/IOGraphics-485/IOGraphicsFamily/
H A DIOFramebuffer.cpp4005 vm_size_t sLen; local
4006 sLen = __private->framebufferHeight * rowBytes;
4019 dLen = 5 + sLen + ((sLen + 7) >> 3) + (__private->framebufferHeight * 3) + rowBytes;
4032 __private->saveLength = round_page(sLen);
4086 DEBG1(thisName, " compressed to %d%%\n", (int) ((dLen * 100) / sLen));
4101 if (frameBuffer) bcopy_nc( (void *) frameBuffer, __private->saveFramebuffer, sLen );

Completed in 291 milliseconds