Lines Matching refs:out

2391 +	xmlSecBufferPtr 			out ,
2402 + xmlSecAssert2( out != NULL , -1 ) ;
2458 + xmlSecBufferPtr out ,
2468 + xmlSecAssert2( out != NULL , -1 ) ;
2513 + xmlSecByte *out, xmlSecSize outSize)
2521 + xmlSecAssert2(out != NULL, NULL);
2555 + s = PK11_DigestFinal(context, out, &len, outSize);
2566 + digest = out;
2583 + xmlSecByte* out ,
2601 + xmlSecAssert2(out != NULL, -1);
2631 + rv = PK11_CipherOp(EncContext, out, &tmp1_outlen, outSize,
2642 + rv = PK11_DigestFinal(EncContext, out+tmp1_outlen,
2676 + xmlSecByte* out;
2691 + out = xmlSecBufferGetData(result);
2705 + memcpy(out, in, inSize);
2706 + memcpy(out + inSize, sha1, XMLSEC_NSS_DES3_BLOCK_LENGTH);
2722 + out, inSize + XMLSEC_NSS_DES3_IV_LENGTH,
2723 + out, outSize, 1);
2734 + memmove(out + XMLSEC_NSS_DES3_IV_LENGTH, out,
2736 + memcpy(out, iv, XMLSEC_NSS_DES3_IV_LENGTH);
2740 + ret = xmlSecNssKWDes3BufferReverse(out, s);
2753 + out, s,
2754 + out, outSize, 1);
2778 + out, outSize, 0);
2790 + ret = xmlSecNssKWDes3BufferReverse(out, s);
2802 + out, XMLSEC_NSS_DES3_IV_LENGTH,
2803 + out+XMLSEC_NSS_DES3_IV_LENGTH, s-XMLSEC_NSS_DES3_IV_LENGTH,
2804 + out, outSize, 0);
2816 + if(xmlSecNssComputeSHA1(out, s, sha1, SHA1_LENGTH) == NULL) {
2825 + if(memcmp(sha1, out + s, XMLSEC_NSS_DES3_BLOCK_LENGTH) != 0) {
2861 + xmlSecByte* out ;
2915 + out = xmlSecBufferGetData(result) ;
2917 + if( PK11_CipherOp( cipherCtx , out, &midSize , outSize , xmlSecBufferGetData( ctx->material ) , i…
2926 + if( PK11_DigestFinal( cipherCtx , out + midSize , &finSize , outSize - midSize ) != SECSuccess ) {
2954 + xmlSecBufferPtr out ,
2968 + xmlSecAssert2( out != NULL , -1 ) ;
3038 + if( xmlSecBufferAppend( out, xmlSecBufferGetData(result), xmlSecBufferGetSize(result) ) < 0 ) {