Home
last modified time | relevance | path

Searched refs:outl (Results 1 – 25 of 151) sorted by relevance

1234567

/third_party/openssl/crypto/asn1/
Da_sign.c33 int i, inl = 0, outl = 0; in ASN1_sign() local
81 outll = outl = EVP_PKEY_get_size(pkey); in ASN1_sign()
84 outl = 0; in ASN1_sign()
94 (unsigned int *)&outl, pkey)) { in ASN1_sign()
95 outl = 0; in ASN1_sign()
102 signature->length = outl; in ASN1_sign()
113 return outl; in ASN1_sign()
158 size_t inl = 0, outl = 0, outll = 0; in ASN1_item_sign_ctx() local
217 outl = signature->length; in ASN1_item_sign_ctx()
264 outl = 0; in ASN1_item_sign_ctx()
[all …]
/third_party/node/deps/openssl/openssl/crypto/asn1/
Da_sign.c33 int i, inl = 0, outl = 0; in ASN1_sign() local
81 outll = outl = EVP_PKEY_get_size(pkey); in ASN1_sign()
84 outl = 0; in ASN1_sign()
94 (unsigned int *)&outl, pkey)) { in ASN1_sign()
95 outl = 0; in ASN1_sign()
102 signature->length = outl; in ASN1_sign()
113 return outl; in ASN1_sign()
158 size_t inl = 0, outl = 0, outll = 0; in ASN1_item_sign_ctx() local
217 outl = signature->length; in ASN1_item_sign_ctx()
264 outl = 0; in ASN1_item_sign_ctx()
[all …]
/third_party/openssl/crypto/evp/
Devp_enc.c451 int EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl, in EVP_CipherUpdate() argument
455 return EVP_EncryptUpdate(ctx, out, outl, in, inl); in EVP_CipherUpdate()
457 return EVP_DecryptUpdate(ctx, out, outl, in, inl); in EVP_CipherUpdate()
460 int EVP_CipherFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) in EVP_CipherFinal_ex() argument
463 return EVP_EncryptFinal_ex(ctx, out, outl); in EVP_CipherFinal_ex()
465 return EVP_DecryptFinal_ex(ctx, out, outl); in EVP_CipherFinal_ex()
468 int EVP_CipherFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) in EVP_CipherFinal() argument
471 return EVP_EncryptFinal(ctx, out, outl); in EVP_CipherFinal()
473 return EVP_DecryptFinal(ctx, out, outl); in EVP_CipherFinal()
554 unsigned char *out, int *outl, in evp_EncryptDecryptUpdate() argument
[all …]
Dencode.c162 int EVP_EncodeUpdate(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl, in EVP_EncodeUpdate() argument
168 *outl = 0; in EVP_EncodeUpdate()
206 *outl = 0; in EVP_EncodeUpdate()
212 *outl = total; in EVP_EncodeUpdate()
217 void EVP_EncodeFinal(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl) in EVP_EncodeFinal() argument
228 *outl = ret; in EVP_EncodeFinal()
303 int EVP_DecodeUpdate(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl, in EVP_DecodeUpdate() argument
408 *outl = ret; in EVP_DecodeUpdate()
464 int EVP_DecodeFinal(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl) in EVP_DecodeFinal() argument
468 *outl = 0; in EVP_DecodeFinal()
[all …]
Dbio_enc.c106 static int enc_read(BIO *b, char *out, int outl) in enc_read() argument
123 if (i > outl) in enc_read()
124 i = outl; in enc_read()
128 outl -= i; in enc_read()
145 while (outl > 0) { in enc_read()
171 if (outl > ENC_MIN_CHUNK) { in enc_read()
177 int j = outl - blocksize, buf_len; in enc_read()
187 outl -= buf_len; in enc_read()
216 if (ctx->buf_len <= outl) in enc_read()
219 i = outl; in enc_read()
[all …]
Dmac_lib.c130 unsigned char *out, size_t *outl, size_t outsize) in evp_mac_final() argument
148 if (outl == NULL) { in evp_mac_final()
152 *outl = macsize; in evp_mac_final()
169 if (outl != NULL) in evp_mac_final()
170 *outl = l; in evp_mac_final()
175 unsigned char *out, size_t *outl, size_t outsize) in EVP_MAC_final() argument
177 return evp_mac_final(ctx, 0, out, outl, outsize); in EVP_MAC_final()
/third_party/node/deps/openssl/openssl/crypto/evp/
Devp_enc.c415 int EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl, in EVP_CipherUpdate() argument
419 return EVP_EncryptUpdate(ctx, out, outl, in, inl); in EVP_CipherUpdate()
421 return EVP_DecryptUpdate(ctx, out, outl, in, inl); in EVP_CipherUpdate()
424 int EVP_CipherFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) in EVP_CipherFinal_ex() argument
427 return EVP_EncryptFinal_ex(ctx, out, outl); in EVP_CipherFinal_ex()
429 return EVP_DecryptFinal_ex(ctx, out, outl); in EVP_CipherFinal_ex()
432 int EVP_CipherFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) in EVP_CipherFinal() argument
435 return EVP_EncryptFinal(ctx, out, outl); in EVP_CipherFinal()
437 return EVP_DecryptFinal(ctx, out, outl); in EVP_CipherFinal()
518 unsigned char *out, int *outl, in evp_EncryptDecryptUpdate() argument
[all …]
Dencode.c162 int EVP_EncodeUpdate(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl, in EVP_EncodeUpdate() argument
168 *outl = 0; in EVP_EncodeUpdate()
206 *outl = 0; in EVP_EncodeUpdate()
212 *outl = total; in EVP_EncodeUpdate()
217 void EVP_EncodeFinal(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl) in EVP_EncodeFinal() argument
228 *outl = ret; in EVP_EncodeFinal()
303 int EVP_DecodeUpdate(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl, in EVP_DecodeUpdate() argument
408 *outl = ret; in EVP_DecodeUpdate()
464 int EVP_DecodeFinal(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl) in EVP_DecodeFinal() argument
468 *outl = 0; in EVP_DecodeFinal()
[all …]
Dbio_enc.c106 static int enc_read(BIO *b, char *out, int outl) in enc_read() argument
123 if (i > outl) in enc_read()
124 i = outl; in enc_read()
128 outl -= i; in enc_read()
145 while (outl > 0) { in enc_read()
171 if (outl > ENC_MIN_CHUNK) { in enc_read()
177 int j = outl - blocksize, buf_len; in enc_read()
187 outl -= buf_len; in enc_read()
216 if (ctx->buf_len <= outl) in enc_read()
219 i = outl; in enc_read()
[all …]
Dmac_lib.c130 unsigned char *out, size_t *outl, size_t outsize) in evp_mac_final() argument
148 if (outl == NULL) { in evp_mac_final()
152 *outl = macsize; in evp_mac_final()
169 if (outl != NULL) in evp_mac_final()
170 *outl = l; in evp_mac_final()
175 unsigned char *out, size_t *outl, size_t outsize) in EVP_MAC_final() argument
177 return evp_mac_final(ctx, 0, out, outl, outsize); in EVP_MAC_final()
/third_party/node/deps/openssl/openssl/providers/implementations/ciphers/
Dciphercommon.c244 size_t *outl, size_t outsize, in ossl_cipher_generic_block_update() argument
316 *outl = inl; in ossl_cipher_generic_block_update()
319 out, outl, in ossl_cipher_generic_block_update()
380 *outl = outlint; in ossl_cipher_generic_block_update()
385 size_t *outl, size_t outsize) in ossl_cipher_generic_block_final() argument
403 *outl = 0; in ossl_cipher_generic_block_final()
419 *outl = blksz; in ossl_cipher_generic_block_final()
426 *outl = 0; in ossl_cipher_generic_block_final()
448 *outl = ctx->bufsz; in ossl_cipher_generic_block_final()
454 size_t *outl, size_t outsize, in ossl_cipher_generic_stream_update() argument
[all …]
Dcipher_tdes_wrap.c128 unsigned char *out, size_t *outl, size_t outsize, in tdes_wrap_cipher() argument
134 *outl = 0; in tdes_wrap_cipher()
147 *outl = ret; in tdes_wrap_cipher()
151 static int tdes_wrap_update(void *vctx, unsigned char *out, size_t *outl, in tdes_wrap_update() argument
155 *outl = 0; in tdes_wrap_update()
163 if (!tdes_wrap_cipher(vctx, out, outl, outsize, in, inl)) { in tdes_wrap_update()
Dcipher_aes_siv.c115 static int siv_cipher(void *vctx, unsigned char *out, size_t *outl, in siv_cipher() argument
126 if (outl != NULL) in siv_cipher()
127 *outl = 0; in siv_cipher()
140 if (outl != NULL) in siv_cipher()
141 *outl = inl; in siv_cipher()
145 static int siv_stream_final(void *vctx, unsigned char *out, size_t *outl, in siv_stream_final() argument
156 if (outl != NULL) in siv_stream_final()
157 *outl = 0; in siv_stream_final()
/third_party/openssl/providers/implementations/ciphers/
Dciphercommon.c244 size_t *outl, size_t outsize, in ossl_cipher_generic_block_update() argument
316 *outl = inl; in ossl_cipher_generic_block_update()
319 out, outl, in ossl_cipher_generic_block_update()
380 *outl = outlint; in ossl_cipher_generic_block_update()
385 size_t *outl, size_t outsize) in ossl_cipher_generic_block_final() argument
403 *outl = 0; in ossl_cipher_generic_block_final()
419 *outl = blksz; in ossl_cipher_generic_block_final()
426 *outl = 0; in ossl_cipher_generic_block_final()
448 *outl = ctx->bufsz; in ossl_cipher_generic_block_final()
454 size_t *outl, size_t outsize, in ossl_cipher_generic_stream_update() argument
[all …]
Dcipher_tdes_wrap.c128 unsigned char *out, size_t *outl, size_t outsize, in tdes_wrap_cipher() argument
134 *outl = 0; in tdes_wrap_cipher()
147 *outl = ret; in tdes_wrap_cipher()
151 static int tdes_wrap_update(void *vctx, unsigned char *out, size_t *outl, in tdes_wrap_update() argument
155 *outl = 0; in tdes_wrap_update()
163 if (!tdes_wrap_cipher(vctx, out, outl, outsize, in, inl)) { in tdes_wrap_update()
Dcipher_aes_siv.c115 static int siv_cipher(void *vctx, unsigned char *out, size_t *outl, in siv_cipher() argument
126 if (outl != NULL) in siv_cipher()
127 *outl = 0; in siv_cipher()
140 if (outl != NULL) in siv_cipher()
141 *outl = inl; in siv_cipher()
145 static int siv_stream_final(void *vctx, unsigned char *out, size_t *outl, in siv_stream_final() argument
156 if (outl != NULL) in siv_stream_final()
157 *outl = 0; in siv_stream_final()
/third_party/openssl/crypto/srp/
Dsrp_vfy.c47 int outl = 0, outl2 = 0; in t_fromb64() local
76 outl = -1; in t_fromb64()
87 && EVP_DecodeUpdate(ctx, a, &outl, pad, padsize) < 0) { in t_fromb64()
88 outl = -1; in t_fromb64()
92 outl = -1; in t_fromb64()
95 outl += outl2; in t_fromb64()
96 EVP_DecodeFinal(ctx, a + outl, &outl2); in t_fromb64()
97 outl += outl2; in t_fromb64()
101 if ((int)padsize >= outl) { in t_fromb64()
102 outl = -1; in t_fromb64()
[all …]
/third_party/node/deps/openssl/openssl/crypto/srp/
Dsrp_vfy.c47 int outl = 0, outl2 = 0; in t_fromb64() local
76 outl = -1; in t_fromb64()
87 && EVP_DecodeUpdate(ctx, a, &outl, pad, padsize) < 0) { in t_fromb64()
88 outl = -1; in t_fromb64()
92 outl = -1; in t_fromb64()
95 outl += outl2; in t_fromb64()
96 EVP_DecodeFinal(ctx, a + outl, &outl2); in t_fromb64()
97 outl += outl2; in t_fromb64()
101 if ((int)padsize >= outl) { in t_fromb64()
102 outl = -1; in t_fromb64()
[all …]
/third_party/node/deps/openssl/openssl/crypto/bio/
Dbf_prefix.c15 static int prefix_write(BIO *b, const char *out, size_t outl,
81 static int prefix_write(BIO *b, const char *out, size_t outl, in prefix_write() argument
99 if (outl > 0) in prefix_write()
100 ctx->linestart = (out[outl-1] == '\n'); in prefix_write()
101 return BIO_write_ex(BIO_next(b), out, outl, numwritten); in prefix_write()
106 while (outl > 0) { in prefix_write()
126 for (i = 0, c = '\0'; i < outl && (c = out[i]) != '\n'; i++) in prefix_write()
138 outl -= num; in prefix_write()
Dbf_readbuff.c106 static int readbuffer_read(BIO *b, char *out, int outl) in readbuffer_read() argument
111 if (out == NULL || outl == 0) in readbuffer_read()
123 if (i > outl) in readbuffer_read()
124 i = outl; in readbuffer_read()
130 if (outl == i) in readbuffer_read()
132 outl -= i; in readbuffer_read()
137 if (!readbuffer_resize(ctx, outl)) in readbuffer_read()
141 i = BIO_read(b->next_bio, ctx->ibuf + ctx->ibuf_off, outl); in readbuffer_read()
Dbf_buff.c87 static int buffer_read(BIO *b, char *out, int outl) in buffer_read() argument
105 if (i > outl) in buffer_read()
106 i = outl; in buffer_read()
111 if (outl == i) in buffer_read()
113 outl -= i; in buffer_read()
123 if (outl > ctx->ibuf_size) { in buffer_read()
125 i = BIO_read(b->next_bio, out, outl); in buffer_read()
134 if (outl == i) in buffer_read()
137 outl -= i; in buffer_read()
/third_party/openssl/crypto/bio/
Dbf_prefix.c15 static int prefix_write(BIO *b, const char *out, size_t outl,
81 static int prefix_write(BIO *b, const char *out, size_t outl, in prefix_write() argument
99 if (outl > 0) in prefix_write()
100 ctx->linestart = (out[outl-1] == '\n'); in prefix_write()
101 return BIO_write_ex(BIO_next(b), out, outl, numwritten); in prefix_write()
106 while (outl > 0) { in prefix_write()
126 for (i = 0, c = '\0'; i < outl && (c = out[i]) != '\n'; i++) in prefix_write()
138 outl -= num; in prefix_write()
Dbf_readbuff.c106 static int readbuffer_read(BIO *b, char *out, int outl) in readbuffer_read() argument
111 if (out == NULL || outl == 0) in readbuffer_read()
123 if (i > outl) in readbuffer_read()
124 i = outl; in readbuffer_read()
130 if (outl == i) in readbuffer_read()
132 outl -= i; in readbuffer_read()
137 if (!readbuffer_resize(ctx, outl)) in readbuffer_read()
141 i = BIO_read(b->next_bio, ctx->ibuf + ctx->ibuf_off, outl); in readbuffer_read()
Dbf_buff.c87 static int buffer_read(BIO *b, char *out, int outl) in buffer_read() argument
105 if (i > outl) in buffer_read()
106 i = outl; in buffer_read()
111 if (outl == i) in buffer_read()
113 outl -= i; in buffer_read()
123 if (outl > ctx->ibuf_size) { in buffer_read()
125 i = BIO_read(b->next_bio, out, outl); in buffer_read()
134 if (outl == i) in buffer_read()
137 outl -= i; in buffer_read()
/third_party/libwebsockets/lib/tls/openssl/
Dlws-genaes.c267 int outl = sizeof(buf), n = 0; in lws_genaes_destroy() local
276 if (EVP_EncryptFinal_ex(ctx->ctx, buf, &outl) != 1) { in lws_genaes_destroy()
291 memcpy(tag, buf, (unsigned int)outl); in lws_genaes_destroy()
296 if (EVP_DecryptFinal_ex(ctx->ctx, buf, &outl) != 1) { in lws_genaes_destroy()
304 if (outl) in lws_genaes_destroy()
305 lwsl_debug("%s: final len %d\n", __func__, outl); in lws_genaes_destroy()
321 int n = 0, outl, olen; in lws_genaes_crypt() local
393 n = EVP_EncryptUpdate(ctx->ctx, out, &outl, in, (int)len); in lws_genaes_crypt()
396 n = EVP_DecryptUpdate(ctx->ctx, out, &outl, in, (int)len); in lws_genaes_crypt()

1234567