/freebsd/crypto/openssl/crypto/asn1/ |
H A D | a_sign.c | 33 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 …]
|
/freebsd/crypto/openssl/crypto/evp/ |
H A D | evp_enc.c | 456 int EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl, in EVP_CipherUpdate() argument 460 return EVP_EncryptUpdate(ctx, out, outl, in, inl); in EVP_CipherUpdate() 462 return EVP_DecryptUpdate(ctx, out, outl, in, inl); in EVP_CipherUpdate() 465 int EVP_CipherFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) in EVP_CipherFinal_ex() argument 468 return EVP_EncryptFinal_ex(ctx, out, outl); in EVP_CipherFinal_ex() 470 return EVP_DecryptFinal_ex(ctx, out, outl); in EVP_CipherFinal_ex() 473 int EVP_CipherFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) in EVP_CipherFinal() argument 476 return EVP_EncryptFinal(ctx, out, outl); in EVP_CipherFinal() 478 return EVP_DecryptFinal(ctx, out, outl); in EVP_CipherFinal() 559 unsigned char *out, int *outl, in evp_EncryptDecryptUpdate() argument [all …]
|
H A D | encode.c | 162 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 D | bio_enc.c | 106 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 D | mac_lib.c | 130 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 D | bio_b64.c | 108 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 D | ciphercommon.c | 248 size_t *outl, size_t outsize, in ossl_cipher_generic_block_update() argument 325 *outl = inl; in ossl_cipher_generic_block_update() 328 out, outl, in ossl_cipher_generic_block_update() 389 *outl = outlint; in ossl_cipher_generic_block_update() 394 size_t *outl, size_t outsize) in ossl_cipher_generic_block_final() argument 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() 468 size_t *outl, size_t outsize, in ossl_cipher_generic_stream_update() argument [all …]
|
H A D | cipher_tdes_wrap.c | 128 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 D | cipher_aes_siv.c | 115 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 D | cipher_aes_xts.c | 157 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 D | ciphercommon_ccm.c | 269 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 D | cipher_aes_ocb.c | 161 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() 508 static int aes_ocb_cipher(void *vctx, unsigned char *out, size_t *outl, in aes_ocb_cipher() argument 526 *outl = inl; in aes_ocb_cipher()
|
H A D | cipher_null.c | 65 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 D | ciphercommon_gcm.c | 309 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 D | cipher_chacha20_poly1305.c | 286 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 D | bf_prefix.c | 15 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 D | bf_readbuff.c | 106 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 D | bf_buff.c | 87 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 D | bf_nbio.c | 80 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 D | srp_vfy.c | 47 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 …]
|
/freebsd/tools/tools/bhyve/ |
H A D | fwctl_fetch.c | 50 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/crypto/libecc/include/libecc/words/ |
H A D | words.h | 98 #define WORD_MUL(outh, outl, in1, in2) do { \ argument 117 (outl) = tmpl; \ 118 (outl) = (word_t)((outl) + ((tmpm & HWORD_MASK) << HWORD_BITS));\ 120 carryl = (word_t)((outl) < tmpl); \
|
/freebsd/tools/tools/crypto/ |
H A D | cryptocheck.c | 712 int outl, total; in openssl_cipher() local 727 if (EVP_CipherUpdate(ctx, (u_char *)output, &outl, in openssl_cipher() 733 total = outl; in openssl_cipher() 734 if (EVP_CipherFinal_ex(ctx, (u_char *)output + outl, &outl) != 1) { in openssl_cipher() 739 total += outl; in openssl_cipher() 1107 int outl; in openssl_gmac() local 1122 if (EVP_EncryptUpdate(ctx, NULL, &outl, (const u_char *)input, in openssl_gmac() 1128 if (EVP_EncryptFinal_ex(ctx, NULL, &outl) != 1) { in openssl_gmac() 1323 int outl, total; in openssl_aead_encrypt() local 1350 if (EVP_EncryptUpdate(ctx, NULL, &outl, (const u_char *)aad, in openssl_aead_encrypt() [all …]
|
/freebsd/sys/compat/linuxkpi/common/include/asm-generic/ |
H A D | io.h | 36 #define outl(a,b) outl(b,a) macro
|
/freebsd/crypto/openssl/test/helpers/ |
H A D | ssltestlib.c | 40 static int tls_dump_read(BIO *b, char *out, int outl); 203 static int tls_dump_read(BIO *bio, char *out, int outl) in tls_dump_read() 208 ret = BIO_read(next, out, outl); 289 static int mempacket_test_read(BIO *b, char *out, int outl); in bio_s_mempacket_test() 354 static int mempacket_test_read(BIO *bio, char *out, int outl) in mempacket_test_read() 372 if (outl > thispkt->len) in mempacket_test_read() 373 outl = thispkt->len; in mempacket_test_read() 406 outl -= len; in mempacket_test_read() 408 if (outl == 0) in mempacket_test_read() 418 memcpy(out, thispkt->data, outl); in mempacket_swap_epoch() 194 tls_dump_read(BIO * bio,char * out,int outl) tls_dump_read() argument 345 mempacket_test_read(BIO * bio,char * out,int outl) mempacket_test_read() argument 769 always_retry_read(BIO * bio,char * out,int outl) always_retry_read() argument [all...] |