Searched refs:outl (Results 1 - 25 of 59) sorted by relevance

123

/macosx-10.10.1/OpenSSL098-52/src/crypto/evp/
H A Devp_enc.c95 int EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl, argument
99 return EVP_EncryptUpdate(ctx,out,outl,in,inl);
100 else return EVP_DecryptUpdate(ctx,out,outl,in,inl);
103 int EVP_CipherFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) argument
106 return EVP_EncryptFinal_ex(ctx,out,outl);
107 else return EVP_DecryptFinal_ex(ctx,out,outl);
110 int EVP_CipherFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) argument
113 return EVP_EncryptFinal(ctx,out,outl);
114 else return EVP_DecryptFinal(ctx,out,outl);
141 int EVP_EncryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl, argument
204 EVP_EncryptFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) argument
211 EVP_EncryptFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) argument
247 EVP_DecryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl, const unsigned char *in, int inl) argument
295 EVP_DecryptFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) argument
302 EVP_DecryptFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) argument
[all...]
H A Dp_open.c113 int EVP_OpenFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) argument
117 i=EVP_DecryptFinal_ex(ctx,out,outl);
H A Dp_seal.c98 void EVP_SealUpdate(ctx,out,outl,in,inl)
101 int *outl;
105 EVP_EncryptUpdate(ctx,out,outl,in,inl);
109 int EVP_SealFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) argument
112 i = EVP_EncryptFinal_ex(ctx,out,outl);
H A Dencode.c131 void EVP_EncodeUpdate(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl, argument
137 *outl=0;
172 *outl=total;
175 void EVP_EncodeFinal(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl) argument
186 *outl=ret;
235 int EVP_DecodeUpdate(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl, argument
352 *outl=ret;
399 int EVP_DecodeFinal(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl) argument
403 *outl=0;
409 *outl
[all...]
H A Devp_test.c144 int outl,outl2; local
171 if(!EVP_EncryptUpdate(&ctx,out,&outl,plaintext,pn))
177 if(!EVP_EncryptFinal_ex(&ctx,out+outl,&outl2))
184 if(outl+outl2 != cn)
187 outl+outl2,cn);
210 if(!EVP_DecryptUpdate(&ctx,out,&outl,ciphertext,cn))
216 if(!EVP_DecryptFinal_ex(&ctx,out+outl,&outl2))
223 if(outl+outl2 != pn)
226 outl+outl2,pn);
H A Dbio_enc.c143 static int enc_read(BIO *b, char *out, int outl) argument
157 if (i > outl) i=outl;
161 outl-=i;
170 /* At this point, we have room of outl bytes and an empty
173 while (outl > 0)
214 if (ctx->buf_len <= outl)
217 i=outl;
222 outl-=i;
H A Dbio_b64.c144 static int b64_read(BIO *b, char *out, int outl) argument
171 if (i > outl) i=outl;
176 outl-=i;
185 /* At this point, we have room of outl bytes and an empty
189 while (outl > 0)
353 if (ctx->buf_len <= outl)
356 i=outl;
366 outl-=i;
H A Devp.h581 int *outl, const unsigned char *in, int inl);
582 int EVP_EncryptFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl);
583 int EVP_EncryptFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl);
590 int *outl, const unsigned char *in, int inl);
591 int EVP_DecryptFinal(EVP_CIPHER_CTX *ctx, unsigned char *outm, int *outl);
592 int EVP_DecryptFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *outm, int *outl);
601 int *outl, const unsigned char *in, int inl);
602 int EVP_CipherFinal(EVP_CIPHER_CTX *ctx, unsigned char *outm, int *outl);
603 int EVP_CipherFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *outm, int *outl);
614 int EVP_OpenFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl);
[all...]
/macosx-10.10.1/OpenSSL098-52/src/crypto/asn1/
H A Da_sign.c135 int i,inl=0,outl=0,outll=0; local
175 outll=outl=EVP_PKEY_size(pkey);
176 buf_out=(unsigned char *)OPENSSL_malloc((unsigned int)outl);
179 outl=0;
189 (unsigned int *)&outl,pkey))
191 outl=0;
198 signature->length=outl;
210 return(outl);
221 int i,inl=0,outl=0,outll=0; local
261 outll=outl
[all...]
/macosx-10.10.1/Security-57031.1.35/SecurityTests/cspxutils/utilLib/
H A DssleayUtils.cpp217 int outl = outLen; local
229 if(!EVP_EncryptUpdate(&ctx, outp, &outl, inData->Data, inData->Length)) {
244 if(!EVP_DecryptUpdate(&ctx, outp, &outl, inData->Data, inData->Length)) {
249 outData->Length = outl;
250 outp += outl;
251 outl = outLen - outl;
253 if(!EVP_EncryptFinal(&ctx, outp, &outl)) {
259 if(!EVP_DecryptFinal(&ctx, outp, &outl)) {
264 outData->Length += outl;
[all...]
/macosx-10.10.1/OpenSSL098-52/src/crypto/pem/
H A Dpem_seal.c121 void PEM_SealUpdate(PEM_ENCODE_SEAL_CTX *ctx, unsigned char *out, int *outl, argument
127 *outl=0;
138 *outl+=j;
146 unsigned char *out, int *outl, EVP_PKEY *priv)
168 *outl=j;
171 *outl+=j;
145 PEM_SealFinal(PEM_ENCODE_SEAL_CTX *ctx, unsigned char *sig, int *sigl, unsigned char *out, int *outl, EVP_PKEY *priv) argument
H A Dpem_lib.c542 int nlen,n,i,j,outl; local
574 EVP_EncodeUpdate(&ctx,buf,&outl,&(data[j]),n);
575 if ((outl) && (BIO_write(bp,(char *)buf,outl) != outl))
577 i+=outl;
581 EVP_EncodeFinal(&ctx,buf,&outl);
582 if ((outl > 0) && (BIO_write(bp,(char *)buf,outl) != outl)) got
[all...]
/macosx-10.10.1/architecture-266/i386/
H A Dpio.h83 static __inline__ void outl( function
87 __asm__ volatile("outl %0, %w1" : : "a" (datum), "Nd" (port));
/macosx-10.10.1/xnu-2782.1.97/EXTERNAL_HEADERS/architecture/i386/
H A Dpio.h88 static __inline__ void outl( function
92 __asm__ volatile("outl %0, %w1" : : "a" (datum), "Nd" (port));
/macosx-10.10.1/OpenSSL098-52/src/test/
H A Devp_test.c144 int outl,outl2; local
171 if(!EVP_EncryptUpdate(&ctx,out,&outl,plaintext,pn))
177 if(!EVP_EncryptFinal_ex(&ctx,out+outl,&outl2))
184 if(outl+outl2 != cn)
187 outl+outl2,cn);
210 if(!EVP_DecryptUpdate(&ctx,out,&outl,ciphertext,cn))
216 if(!EVP_DecryptFinal_ex(&ctx,out+outl,&outl2))
223 if(outl+outl2 != pn)
226 outl+outl2,pn);
/macosx-10.10.1/OpenSSL098-52/src/crypto/bio/
H A Dbf_nbio.c126 static int nbiof_read(BIO *b, char *out, int outl) argument
142 if (outl > num) outl=num;
152 ret=BIO_read(b->next_bio,out,outl);
H A Dbf_buff.c131 static int buffer_read(BIO *b, char *out, int outl) argument
148 if (i > outl) i=outl;
153 if (outl == i) return(num);
154 outl-=i;
163 if (outl > ctx->ibuf_size)
167 i=BIO_read(b->next_bio,out,outl);
175 if (outl == i) return(num);
177 outl-=i;
H A Dbss_rtcp.c174 static int rtcp_read(BIO *b, char *out, int outl) argument
184 if ( length > outl ) length = outl;
212 if ( length > outl ) length = outl;
H A Dbf_null.c111 static int nullf_read(BIO *b, char *out, int outl) argument
117 ret=BIO_read(b->next_bio,out,outl);
H A Dbss_null.c104 static int null_read(BIO *b, char *out, int outl) argument
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_apple_csp/open_ssl/openssl/
H A Devp.h510 int *outl, unsigned char *in, int inl);
511 void EVP_EncryptFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl);
516 int *outl, unsigned char *in, int inl);
517 int EVP_DecryptFinal(EVP_CIPHER_CTX *ctx, unsigned char *outm, int *outl);
522 int *outl, unsigned char *in, int inl);
523 int EVP_CipherFinal(EVP_CIPHER_CTX *ctx, unsigned char *outm, int *outl);
533 int EVP_OpenFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl);
537 void EVP_SealFinal(EVP_CIPHER_CTX *ctx,unsigned char *out,int *outl);
541 int *outl,unsigned char *in,int inl);
542 void EVP_EncodeFinal(EVP_ENCODE_CTX *ctx,unsigned char *out,int *outl);
[all...]
/macosx-10.10.1/apr-32/apr-util/apr-util/crypto/
H A Dapr_crypto_nss.c621 int outl = (int) *outlen; local
636 s = PK11_CipherOp(block->ctx, *out, &outl, inlen, (unsigned char*) in,
646 *outlen = outl;
675 unsigned int outl = *outlen; local
677 SECStatus s = PK11_DigestFinal(block->ctx, out, &outl, block->blockSize);
678 *outlen = outl;
785 int outl = (int) *outlen; local
800 s = PK11_CipherOp(block->ctx, *out, &outl, inlen, (unsigned char*) in,
810 *outlen = outl;
839 unsigned int outl local
[all...]
H A Dapr_crypto_openssl.c565 int outl = *outlen; local
585 if (!EVP_EncryptUpdate(&ctx->cipherCtx, (*out), &outl, in, inlen)) {
587 if (!EVP_EncryptUpdate(&ctx->cipherCtx, (*out), &outl,
592 *outlen = outl;
720 int outl = *outlen; local
740 if (!EVP_DecryptUpdate(&ctx->cipherCtx, *out, &outl, in, inlen)) {
742 if (!EVP_DecryptUpdate(&ctx->cipherCtx, *out, &outl, (unsigned char *) in,
747 *outlen = outl;
/macosx-10.10.1/OpenSSL098-52/src/crypto/pkcs7/
H A Dbio_ber.c226 static int ber_read(BIO *b, char *out, int outl) argument
244 if (ctx->num_left < outl)
247 n=outl;
255 outl-=i;
263 if (outl <= 0)
/macosx-10.10.1/OpenSSL098-52/src/include/openssl/
H A Devp.h581 int *outl, const unsigned char *in, int inl);
582 int EVP_EncryptFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl);
583 int EVP_EncryptFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl);
590 int *outl, const unsigned char *in, int inl);
591 int EVP_DecryptFinal(EVP_CIPHER_CTX *ctx, unsigned char *outm, int *outl);
592 int EVP_DecryptFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *outm, int *outl);
601 int *outl, const unsigned char *in, int inl);
602 int EVP_CipherFinal(EVP_CIPHER_CTX *ctx, unsigned char *outm, int *outl);
603 int EVP_CipherFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *outm, int *outl);
614 int EVP_OpenFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl);
[all...]

Completed in 689 milliseconds

123