Searched refs:CCCryptorUpdate (Results 1 - 25 of 26) sorted by relevance

12

/macosx-10.10/CommonCrypto-60061/test/CommonCrypto/
H A DCommonCryptoReset.c50 retval = CCCryptorUpdate(cref, plain, 16, cipher1, 16, &moved);
54 retval = CCCryptorUpdate(cref, plain, 16, cipher2, 16, &moved);
64 retval = CCCryptorUpdate(cref, plain, 16, cipher3, 16, &moved);
74 retval = CCCryptorUpdate(cref, plain, 16, cipher4, 16, &moved);
80 retval = CCCryptorUpdate(cref, plain, 16, cipher5, 16, &moved);
H A DCommonCryptoSymCTR.c39 CCCryptorStatus retval = CCCryptorUpdate(cryptor, inbb->bytes, inbb->len, buf->bytes, buf->len, &buf->len);
H A DCommonCryptoNoPad.c71 status = CCCryptorUpdate(cryptorRef, dataIn, inputLength, dataOut, MAXOUT, &moved);
H A DCCCryptorTestFuncs.c32 if((retval = CCCryptorUpdate(cref, dataIn, dataInLength, dataOut, dataOutAvailable, &moved)) != kCCSuccess) {
81 retval = CCCryptorUpdate(cref, dataIn, p1, dataOut, dataOutAvailable, dataOutMoved);
92 retval = CCCryptorUpdate(cref, dataIn, p2, dataOut, dataOutAvailable, &newmoved);
152 retval = CCCryptorUpdate(cref, dataIn, p1, dataOut, dataOutAvailable, dataOutMoved);
163 retval = CCCryptorUpdate(cref, dataIn, p2, dataOut, dataOutAvailable, &newmoved);
H A DCommonCryptoSymCCM.c2408 if((retval = CCCryptorUpdate(cref, smbpacketbuf->bytes, smbpacketbuf->len, result->bytes, result->len, &moved)) != kCCSuccess) {
H A DCommonCryptoOutputLength.c29 status = CCCryptorUpdate(cryptorRef, dataIn, bufferPos, dataOut, MAXOUT, &moved);
H A DCommonCryptoSymRegression.c293 crtn = CCCryptorUpdate(cryptor, inp, thisMoveIn,
296 printCCError("CCCryptorUpdate", crtn);
/macosx-10.10/OpenSSH-189/osslshim/ossl/
H A Dossl-aes-cc.c108 (void)CCCryptorUpdate(key->cref, (const void *)in, kCCBlockSizeAES128,
117 (void)CCCryptorUpdate(key->cref, (const void *)in, kCCBlockSizeAES128,
H A Dossl-evp-cc.c108 ret = CCCryptorUpdate(cc->href, in, size, out, size, &moved);
278 ret = CCCryptorUpdate(cc->href, ctx->iv, ctx->cipher->iv_len,
/macosx-10.10/Security-57031.1.35/Security/libsecurity_apple_csp/lib/
H A Drc4Context.cpp67 (void) CCCryptorUpdate(rc4Key, inp, inSize, outp, inSize, &outSize);
/macosx-10.10/Security-57031.1.35/SecurityTests/cspxutils/ccPerform/
H A DccPerform.cpp192 ortn = CCCryptorUpdate(cryptor, workBuf, bufSize,
195 printCCError("CCCryptorUpdate", ortn);
218 ortn = CCCryptorUpdate(cryptor, workBuf, bufSize,
221 printCCError("CCCryptorUpdate", ortn);
/macosx-10.10/WebCore-7600.1.25/crypto/mac/
H A DCryptoAlgorithmAES_CBCMac.cpp63 status = CCCryptorUpdate(cryptor, data.first, data.second, result.data(), result.size(), &bytesWritten);
/macosx-10.10/CommonCrypto-60061/include/
H A DCommonCryptor.h43 CCCryptorUpdate(), each of which may result in output data
67 calls to CCCryptorUpdate() do not have to provide data whose
70 length of data input to CCCryptorUpdate() call(s) be aligned
373 @function CCCryptorUpdate
423 CCCryptorUpdate() is an integral multiple of the block size.
426 CCCryptorStatus CCCryptorUpdate(
490 CCCryptorUpdate().
493 bytes are provided to CCCryptorUpdate(). When
497 CCCryptorUpdate() and then CCCryptorFinal() is
500 @result The maximum buffer space need to perform CCCryptorUpdate() an
[all...]
/macosx-10.10/Heimdal-398.1.2/lib/hcrypto/
H A Devp-cc.c80 ret = CCCryptorUpdate(cc->href, in, size, out, size, &moved);
107 ret = CCCryptorUpdate(cc->href, ctx->iv, ctx->cipher->iv_len,
/macosx-10.10/Heimdal-398.1.2/lib/krb5/
H A Dcrypto-aes.c276 s = CCCryptorUpdate(c, data, len, p, plen, &moved);
277 heim_assert(s == 0, "CCCryptorUpdate failed");
/macosx-10.10/Security-57031.1.35/Security/libsecurity_ssl/Security/
H A DsymCipher.c316 ccrtn = CCCryptorUpdate(cryptorRef, src, len,
/macosx-10.10/Security-57031.1.35/Security/libsecurity_ssl/lib/
H A DsymCipher.c316 ccrtn = CCCryptorUpdate(cryptorRef, src, len,
/macosx-10.10/Security-57031.1.35/Security/libsecurity_ssl/security_ssl/
H A DsymCipher.c316 ccrtn = CCCryptorUpdate(cryptorRef, src, len,
/macosx-10.10/tcpdump-61/tcpdump/
H A Dprint-esp.c361 (void)CCCryptorUpdate(ctx, buf, len, buf, len, &dataMoved);
929 CCCryptorUpdate(ctx, p + ivlen, len, p + ivlen, len, &dataMoved);
/macosx-10.10/Security-57031.1.35/SecurityTests/cspxutils/ccSymCompat/
H A DccSymCompat.c416 crtn = CCCryptorUpdate(cryptor, inp, thisMoveIn,
419 printf("***CCCryptorUpdate returned %ld\n", (long)crtn);
/macosx-10.10/Security-57031.1.35/SecurityTests/cspxutils/ccSymTest/
H A DccSymTest.cpp258 crtn = CCCryptorUpdate(cryptor, inp, thisMoveIn,
261 printCCError("CCCryptorUpdate", crtn);
/macosx-10.10/eap8021x-198/EAP8021X.fproj/
H A DEAPSIMAKAUtil.c366 status = CCCryptorUpdate(cryptor,
425 status = CCCryptorUpdate(cryptor, clear, size, encrypted, size, &buf_used);
2066 status = CCCryptorUpdate(cryptor,
2120 status = CCCryptorUpdate(cryptor,
/macosx-10.10/CommonCrypto-60061/lib/
H A DCommonCryptor.c577 // printf("CCCryptorUpdate checkpoint 0\n");
580 // printf("CCCryptorUpdate checkpoint 1\n");
585 // printf("CCCryptorUpdate checkpoint 1.1 bufpos = %d\n", (int) cryptor->bufferPos);
589 // printf("CCCryptorUpdate checkpoint 1.2\n");
594 // printf("CCCryptorUpdate checkpoint 2\n");
601 // printf("CCCryptorUpdate checkpoint 3\n");
603 // printf("CCCryptorUpdate bad calculation 1\n");
615 // printf("CCCryptorUpdate checkpoint 4\n");
618 // printf("CCCryptorUpdate bad calculation 2\n");
627 // printf("CCCryptorUpdate checkpoin
662 CCCryptorStatus CCCryptorUpdate( function
[all...]
/macosx-10.10/Security-57031.1.35/libsecurity_smime/Security/
H A Dcmscipher.c872 rv = CCCryptorUpdate(cc->cc, input, input_len, output, max_output_len, &bytes_output);
/macosx-10.10/Security-57031.1.35/libsecurity_smime/lib/
H A Dcmscipher.c872 rv = CCCryptorUpdate(cc->cc, input, input_len, output, max_output_len, &bytes_output);

Completed in 384 milliseconds

12