Home
last modified time | relevance | path

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

1234

/freebsd/crypto/openssl/crypto/asn1/
H A Da_sign.c33 int i, inl = 0, outl = 0; in ASN1_sign() local
84 outl = 0; in ASN1_sign()
95 outl = 0; in ASN1_sign()
102 signature->length = outl; in ASN1_sign()
113 return outl; in ASN1_sign()
264 outl = 0; in ASN1_item_sign_ctx()
270 outl = 0; in ASN1_item_sign_ctx()
274 outl = outll; in ASN1_item_sign_ctx()
277 outl = 0; in ASN1_item_sign_ctx()
283 outl = 0; in ASN1_item_sign_ctx()
[all …]
/freebsd/crypto/openssl/crypto/evp/
H A Devp_enc.c585 *outl = 0; in evp_EncryptDecryptUpdate()
633 *outl = 0; in evp_EncryptDecryptUpdate()
657 *outl = 0; in EVP_EncryptUpdate()
719 *outl = 0; in EVP_EncryptFinal_ex()
773 *outl = 0; in EVP_EncryptFinal_ex()
782 *outl = 0; in EVP_EncryptFinal_ex()
792 *outl = b; in EVP_EncryptFinal_ex()
806 *outl = 0; in EVP_DecryptUpdate()
869 *outl = 0; in EVP_DecryptUpdate()
940 *outl = 0; in EVP_DecryptFinal_ex()
[all …]
H A 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 …]
H A 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 …]
H A 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()
H A Dbio_b64.c108 static int b64_read(BIO *b, char *out, int outl) in b64_read() argument
137 if (i > outl) in b64_read()
138 i = outl; in b64_read()
143 outl -= i; in b64_read()
157 while (outl > 0) { in b64_read()
306 if (ctx->buf_len <= outl) in b64_read()
309 i = outl; in b64_read()
318 outl -= i; in b64_read()
/freebsd/crypto/openssl/providers/implementations/ciphers/
H A Dciphercommon.c325 *outl = inl; in ossl_cipher_generic_block_update()
389 *outl = outlint; in ossl_cipher_generic_block_update()
417 *outl = 0; in ossl_cipher_generic_block_final()
433 *outl = blksz; in ossl_cipher_generic_block_final()
440 *outl = 0; in ossl_cipher_generic_block_final()
462 *outl = ctx->bufsz; in ossl_cipher_generic_block_final()
479 *outl = 0; in ossl_cipher_generic_stream_update()
493 *outl = inl; in ossl_cipher_generic_stream_update()
515 *outl -= ctx->removetlsfixed; in ossl_cipher_generic_stream_update()
542 *outl = 0; in ossl_cipher_generic_stream_final()
[all …]
H A 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()
H A 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()
H A Dcipher_aes_xts.c157 static int aes_xts_cipher(void *vctx, unsigned char *out, size_t *outl, in aes_xts_cipher() argument
188 *outl = inl; in aes_xts_cipher()
192 static int aes_xts_stream_update(void *vctx, unsigned char *out, size_t *outl, in aes_xts_stream_update() argument
203 if (!aes_xts_cipher(ctx, out, outl, outsize, in, inl)) { in aes_xts_stream_update()
211 static int aes_xts_stream_final(void *vctx, unsigned char *out, size_t *outl, in aes_xts_stream_final() argument
216 *outl = 0; in aes_xts_stream_final()
H A Dciphercommon_ccm.c269 int ossl_ccm_stream_update(void *vctx, unsigned char *out, size_t *outl, in ossl_ccm_stream_update() argument
280 if (!ccm_cipher_internal(ctx, out, outl, in, inl)) { in ossl_ccm_stream_update()
287 int ossl_ccm_stream_final(void *vctx, unsigned char *out, size_t *outl, in ossl_ccm_stream_final() argument
296 i = ccm_cipher_internal(ctx, out, outl, NULL, 0); in ossl_ccm_stream_final()
300 *outl = 0; in ossl_ccm_stream_final()
304 int ossl_ccm_cipher(void *vctx, unsigned char *out, size_t *outl, size_t outsize, in ossl_ccm_cipher() argument
317 if (ccm_cipher_internal(ctx, out, outl, in, inl) <= 0) in ossl_ccm_cipher()
320 *outl = inl; in ossl_ccm_cipher()
H A Dcipher_null.c65 static int null_cipher(void *vctx, unsigned char *out, size_t *outl, in null_cipher() argument
87 *outl = inl; in null_cipher()
92 static int null_final(void *vctx, unsigned char *out, size_t *outl, in null_final() argument
98 *outl = 0; in null_final()
H A Dcipher_aes_ocb.c161 unsigned char *out, size_t *outl, in aes_ocb_block_update_internal() argument
206 *outl = outlint; in aes_ocb_block_update_internal()
231 static int aes_ocb_block_update(void *vctx, unsigned char *out, size_t *outl, in aes_ocb_block_update() argument
244 *outl = 0; in aes_ocb_block_update()
258 return aes_ocb_block_update_internal(ctx, buf, buflen, out, outl, outsize, in aes_ocb_block_update()
262 static int aes_ocb_block_final(void *vctx, unsigned char *out, size_t *outl, in aes_ocb_block_final() argument
278 *outl = 0; in aes_ocb_block_final()
282 *outl = ctx->data_buf_len; in aes_ocb_block_final()
500 static int aes_ocb_cipher(void *vctx, unsigned char *out, size_t *outl, in aes_ocb_cipher() argument
518 *outl = inl; in aes_ocb_cipher()
H A Dciphercommon_gcm.c309 int ossl_gcm_stream_update(void *vctx, unsigned char *out, size_t *outl, in ossl_gcm_stream_update() argument
315 *outl = 0; in ossl_gcm_stream_update()
324 if (gcm_cipher_internal(ctx, out, outl, in, inl) <= 0) { in ossl_gcm_stream_update()
331 int ossl_gcm_stream_final(void *vctx, unsigned char *out, size_t *outl, in ossl_gcm_stream_final() argument
340 i = gcm_cipher_internal(ctx, out, outl, NULL, 0); in ossl_gcm_stream_final()
344 *outl = 0; in ossl_gcm_stream_final()
349 unsigned char *out, size_t *outl, size_t outsize, in ossl_gcm_cipher() argument
362 if (gcm_cipher_internal(ctx, out, outl, in, inl) <= 0) in ossl_gcm_cipher()
365 *outl = inl; in ossl_gcm_cipher()
H A Dcipher_chacha20_poly1305.c286 size_t *outl, size_t outsize, in chacha20_poly1305_cipher() argument
297 *outl = 0; in chacha20_poly1305_cipher()
306 if (!hw->aead_cipher(ctx, out, outl, in, inl)) in chacha20_poly1305_cipher()
312 static int chacha20_poly1305_final(void *vctx, unsigned char *out, size_t *outl, in chacha20_poly1305_final() argument
322 if (hw->aead_cipher(ctx, out, outl, NULL, 0) <= 0) in chacha20_poly1305_final()
325 *outl = 0; in chacha20_poly1305_final()
/freebsd/crypto/openssl/crypto/bio/
H A 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()
H A 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()
H A 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()
H A Dbf_nbio.c80 static int nbiof_read(BIO *b, char *out, int outl) in nbiof_read() argument
96 if (outl > num) in nbiof_read()
97 outl = num; in nbiof_read()
103 ret = BIO_read(b->next_bio, out, outl); in nbiof_read()
/freebsd/crypto/openssl/crypto/srp/
H A Dsrp_vfy.c47 int outl = 0, outl2 = 0; in t_fromb64() local
76 outl = -1; in t_fromb64()
88 outl = -1; in t_fromb64()
92 outl = -1; in t_fromb64()
95 outl += outl2; in t_fromb64()
97 outl += outl2; in t_fromb64()
102 outl = -1; in t_fromb64()
120 outl -= padsize; in t_fromb64()
126 return outl; in t_fromb64()
165 outl += outl2; in t_tob64()
[all …]
/freebsd/tools/tools/bhyve/
H A Dfwctl_fetch.c50 outl(FWCTL_OUT, value); in send_node_name()
58 outl(FWCTL_OUT, value); in send_node_name()
69 outl(FWCTL_OUT, 12 + strlen(name) + 1); in fwctl_op()
72 outl(FWCTL_OUT, op); in fwctl_op()
75 outl(FWCTL_OUT, id); in fwctl_op()
/freebsd/tools/tools/crypto/
H A Dcryptocheck.c708 int outl, total; in openssl_cipher() local
723 total = outl; in openssl_cipher()
727 total += outl; in openssl_cipher()
1076 int outl; in openssl_gmac() local
1258 int outl, total; in openssl_aead_encrypt() local
1286 total = outl; in openssl_aead_encrypt()
1290 total += outl; in openssl_aead_encrypt()
1331 total = outl; in openssl_aead_decrypt()
1337 total += outl; in openssl_aead_decrypt()
1397 total = outl; in openssl_ccm_encrypt()
[all …]
/freebsd/sys/compat/linuxkpi/common/include/asm-generic/
H A Dio.h36 #define outl(a,b) outl(b,a) macro
/freebsd/crypto/openssl/providers/implementations/digests/
H A Dnull_prov.c40 static int name##_internal_final(void *ctx, unsigned char *out, size_t *outl, \
44 *outl = dgstsize; \
/freebsd/sys/i386/i386/
H A Dgeode.c113 outl(gpio, u); in led_func()
135 outl(a, 1 << bit); in cs5536_led_func()
137 outl(a, 1 << (bit + 16)); in cs5536_led_func()
284 outl(cba + 0x0d, 2); in geode_probe()

1234