Home
last modified time | relevance | path

Searched refs:remain (Results 1 – 25 of 42) sorted by relevance

12

/openssl/test/helpers/
H A Dpktsplitbio.c85 size_t remain; in pkt_split_dgram_recvmmsg() local
97 remain = PACKET_remaining(&pkt); in pkt_split_dgram_recvmmsg()
98 if (remain > 0) { in pkt_split_dgram_recvmmsg()
103 thismsg->data_len -= remain; in pkt_split_dgram_recvmmsg()
104 msg[i + 1].data_len = remain; in pkt_split_dgram_recvmmsg()
107 remain); in pkt_split_dgram_recvmmsg()
/openssl/crypto/property/
H A Dproperty_parse.c607 if (*remain == 0) { in put_char()
611 if (*remain == 1) in put_char()
617 --*remain; in put_char()
645 if (*remain == 0) { in put_str()
659 *remain -= len; in put_str()
668 --*remain; in put_str()
685 if (*remain == 0) in put_num()
689 if (*remain < len) { in put_num()
690 *buf += *remain; in put_num()
691 *remain = 0; in put_num()
[all …]
/openssl/crypto/hmac/
H A Dhmac_s390x.c190 size_t remain, num; in s390x_HMAC_update() local
202 remain = ctx->plat.s390x.size - ctx->plat.s390x.num; in s390x_HMAC_update()
203 if (len > remain) { in s390x_HMAC_update()
207 memcpy(&ctx->plat.s390x.buf[ctx->plat.s390x.num], data, remain); in s390x_HMAC_update()
208 ctx->plat.s390x.num += remain; in s390x_HMAC_update()
214 data += remain; in s390x_HMAC_update()
215 len -= remain; in s390x_HMAC_update()
226 remain = len % ctx->plat.s390x.blk_size; in s390x_HMAC_update()
227 num = len - remain; in s390x_HMAC_update()
/openssl/doc/internal/man7/
H A Ddeprecation.pod53 future, but needs to remain available until that time.
57 =item Planned to remain internally
60 remain for internal purposes. In this case, the implementation doesn't need
67 units. See L</Implementations to remain internally> below.
115 =head2 Implementations to remain internally
/openssl/crypto/sm4/asm/
H A Dvpsm4-armv8.pl1213 my $remain=("x29");
1248 and $remain,$len,#0x0F
1254 cmp $remain,0
1477 cmp $remain,0
1529 subs $remain,$remain,1
1530 ldrb $wtmp0,[$lastBlk,$remain]
1531 ldrb $wtmp1,[$inp,$remain]
1532 strb $wtmp1,[$lastBlk,$remain]
1533 strb $wtmp0,[$outp,$remain]
H A Dvpsm4_ex-armv8.pl1204 my $remain=("x29");
1240 and $remain,$len,#0x0F
1246 cmp $remain,0
1452 cmp $remain,0
1503 subs $remain,$remain,1
1504 ldrb $wtmp0,[$lastBlk,$remain]
1505 ldrb $wtmp1,[$inp,$remain]
1506 strb $wtmp1,[$lastBlk,$remain]
1507 strb $wtmp0,[$outp,$remain]
/openssl/crypto/bio/
H A Dbss_mem.c248 long off, remain; in mem_ctrl() local
258 remain = bm->length; in mem_ctrl()
277 if (num < 0 || num > off + remain) in mem_ctrl()
/openssl/external/perl/
H A DDownloaded.txt6 They remain unmodified and retain their copyright and license.
/openssl/doc/man3/
H A DOSSL_PARAM_BLD.pod108 The string that I<buf> points to is stored by reference and must remain in
113 The memory that I<buf> points to is stored by reference and must remain in
120 The string I<buf> points to is stored by reference and must remain in
125 The memory I<buf> points to is stored by reference and must remain in
H A DEVP_PKEY_CTX_new.pod37 of the arguments are duplicated, so they must remain unchanged for the
44 arguments are duplicated, so they must remain unchanged for the lifetime of the
H A DSSL_inject_net_dgram.pod24 the length of the buffer in bytes. The buffer is copied and need not remain
H A DSSL_pending.pod28 additional bytes will be buffered by OpenSSL but will remain unprocessed until
H A DRAND_bytes.pod32 be used for generating values that should remain private. If using the
H A DBN_rand.pod73 used for generating values that should remain private, and mirror the
H A DSSL_CTX_sess_set_get_cb.pod96 setting B<copy> to B<0> causes the reference count to remain unchanged.
H A DPEM_read.pod93 includes the case when no more PEM objects remain in the input file.
/openssl/crypto/x509/
H A Dv3_utl.c1073 int i = 0, remain = 0, bytes = 0; in ossl_ipaddr_to_asc() local
1080 for (out = buf, i = 8, remain = sizeof(buf); in ossl_ipaddr_to_asc()
1082 remain -= bytes, out += bytes) { in ossl_ipaddr_to_asc()
1085 bytes = BIO_snprintf(out, remain, template, p[0] << 8 | p[1]); in ossl_ipaddr_to_asc()
/openssl/ssl/record/
H A Drec_layer_s3.c405 size_t tmppipelen, remain; in ssl3_write_bytes() local
448 remain = n % maxpipes; in ssl3_write_bytes()
453 if (remain > 0) in ssl3_write_bytes()
461 if (j + 1 == remain) in ssl3_write_bytes()
/openssl/doc/man7/
H A DRAND.pod38 For values that should remain secret, you can use L<RAND_priv_bytes(3)>
/openssl/doc/designs/quic-design/
H A Dquic-requirements.md52 part of this activity - we can change major release numbers even if APIs remain
98 usage needs to remain simple.
H A Dquic-ackm.md123 must remain allocated until one of the callbacks is called or the ACK manager is
365 structures, are guaranteed to remain valid until the next call to any
/openssl/ssl/statem/
H A Dstatem_lib.c780 size_t remain; in tls_process_change_cipher_spec() local
782 remain = PACKET_remaining(pkt); in tls_process_change_cipher_spec()
790 && remain != DTLS1_CCS_HEADER_LENGTH + 1) in tls_process_change_cipher_spec()
792 && remain != DTLS1_CCS_HEADER_LENGTH - 1)) { in tls_process_change_cipher_spec()
797 if (remain != 0) { in tls_process_change_cipher_spec()
/openssl/doc/internal/man3/
H A DOPENSSL_SA.pod107 case, the elements of the sparse array remain unchanged, although the internal
/openssl/
H A DNOTES-UNIX.md112 for shared libraries first and tend to remain "blind" to static OpenSSL
/openssl/doc/designs/ddd/
H A DREADME.md12 codebases using OpenSSL to remain current with best practices for OpenSSL API

Completed in 60 milliseconds

12