| /netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/evp/ |
| H A D | evp_enc.c | 210 int EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl, in EVP_CipherUpdate() argument 214 return EVP_EncryptUpdate(ctx, out, outl, in, inl); in EVP_CipherUpdate() 216 return EVP_DecryptUpdate(ctx, out, outl, in, inl); in EVP_CipherUpdate() 219 int EVP_CipherFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) in EVP_CipherFinal_ex() argument 222 return EVP_EncryptFinal_ex(ctx, out, outl); in EVP_CipherFinal_ex() 224 return EVP_DecryptFinal_ex(ctx, out, outl); in EVP_CipherFinal_ex() 227 int EVP_CipherFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) in EVP_CipherFinal() argument 230 return EVP_EncryptFinal(ctx, out, outl); in EVP_CipherFinal() 232 return EVP_DecryptFinal(ctx, out, outl); in EVP_CipherFinal() 299 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 …]
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/asn1/ |
| H A D | a_sign.c | 32 int i, inl = 0, outl = 0; in ASN1_sign() local 80 outll = outl = EVP_PKEY_size(pkey); in ASN1_sign() 83 outl = 0; in ASN1_sign() 93 (unsigned int *)&outl, pkey)) { in ASN1_sign() 94 outl = 0; in ASN1_sign() 101 signature->length = outl; in ASN1_sign() 112 return outl; in ASN1_sign() 146 size_t inl = 0, outl = 0, outll = 0; in ASN1_item_sign_ctx() local 166 outl = signature->length; in ASN1_item_sign_ctx() 209 outl = 0; in ASN1_item_sign_ctx() [all …]
|
| /netbsd-src/crypto/external/bsd/openssl/dist/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()
|
| /netbsd-src/crypto/external/bsd/openssl/dist/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 …]
|
| /netbsd-src/crypto/external/bsd/openssl/dist/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 | 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() 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 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 | 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_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()
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/srp/ |
| H A D | srp_vfy.c | 44 int outl = 0, outl2 = 0; in t_fromb64() local 73 outl = -1; in t_fromb64() 84 && EVP_DecodeUpdate(ctx, a, &outl, pad, padsize) < 0) { in t_fromb64() 85 outl = -1; in t_fromb64() 89 outl = -1; in t_fromb64() 92 outl += outl2; in t_fromb64() 93 EVP_DecodeFinal(ctx, a + outl, &outl2); in t_fromb64() 94 outl += outl2; in t_fromb64() 98 if ((int)padsize >= outl) { in t_fromb64() 99 outl = -1; in t_fromb64() [all …]
|
| /netbsd-src/crypto/external/bsd/openssl/dist/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 …]
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/apps/ |
| H A D | bf_prefix.c | 16 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 92 if (outl > 0) in prefix_write() 93 ctx->linestart = (out[outl-1] == '\n'); in prefix_write() 94 return BIO_write_ex(BIO_next(b), out, outl, numwritten); in prefix_write() 99 while (outl > 0) { in prefix_write() 114 for (i = 0, c = '\0'; i < outl && (c = out[i]) != '\n'; i++) in prefix_write() 126 outl -= num; in prefix_write()
|
| /netbsd-src/crypto/external/bsd/openssl/dist/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_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()
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/bio/ |
| H A D | bf_buff.c | 89 static int buffer_read(BIO *b, char *out, int outl) in buffer_read() argument 107 if (i > outl) in buffer_read() 108 i = outl; in buffer_read() 113 if (outl == i) in buffer_read() 115 outl -= i; in buffer_read() 125 if (outl > ctx->ibuf_size) { in buffer_read() 127 i = BIO_read(b->next_bio, out, outl); in buffer_read() 136 if (outl == i) in buffer_read() 139 outl -= i; in buffer_read()
|
| H A D | bf_nbio.c | 82 static int nbiof_read(BIO *b, char *out, int outl) in nbiof_read() argument 98 if (outl > num) in nbiof_read() 99 outl = num; in nbiof_read() 105 ret = BIO_read(b->next_bio, out, outl); in nbiof_read()
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/test/ |
| H A D | ssltestlib.c | 56 static int tls_dump_read(BIO *b, char *out, int outl); 218 static int tls_dump_read(BIO *bio, char *out, int outl) in tls_dump_read() argument 223 ret = BIO_read(next, out, outl); in tls_dump_read() 304 static int mempacket_test_read(BIO *b, char *out, int outl); 369 static int mempacket_test_read(BIO *bio, char *out, int outl) in mempacket_test_read() argument 387 if (outl > thispkt->len) in mempacket_test_read() 388 outl = thispkt->len; in mempacket_test_read() 421 outl -= len; in mempacket_test_read() 423 if (outl == 0) in mempacket_test_read() 433 memcpy(out, thispkt->data, outl); in mempacket_test_read() [all …]
|