Home
last modified time | relevance | path

Searched refs:fill (Results 1 – 25 of 26) sorted by relevance

12

/openssl/crypto/ec/curve448/
H A Df_generic.c23 unsigned int j = 0, fill = 0; in gf_serialize() local
34 if (fill < 8 && j < NLIMBS) { in gf_serialize()
35 buffer |= ((dword_t) red->limb[LIMBPERM(j)]) << fill; in gf_serialize()
36 fill += LIMB_PLACE_VALUE(LIMBPERM(j)); in gf_serialize()
40 fill -= 8; in gf_serialize()
69 unsigned int j = 0, fill = 0; in gf_deserialize() local
77 while (fill < LIMB_PLACE_VALUE(LIMBPERM(i)) && j < nbytes) { in gf_deserialize()
83 buffer |= ((dword_t) sj) << fill; in gf_deserialize()
84 fill += 8; in gf_deserialize()
89 fill -= LIMB_PLACE_VALUE(LIMBPERM(i)); in gf_deserialize()
/openssl/providers/implementations/digests/
H A Dblake2b_prov.c262 size_t fill; in ossl_blake2b_update() local
272 fill = sizeof(c->buf) - c->buflen; in ossl_blake2b_update()
273 if (datalen > fill) { in ossl_blake2b_update()
275 memcpy(c->buf + c->buflen, in, fill); /* Fill buffer */ in ossl_blake2b_update()
278 in += fill; in ossl_blake2b_update()
279 datalen -= fill; in ossl_blake2b_update()
H A Dblake2s_prov.c250 size_t fill; in ossl_blake2s_update() local
260 fill = sizeof(c->buf) - c->buflen; in ossl_blake2s_update()
261 if (datalen > fill) { in ossl_blake2s_update()
263 memcpy(c->buf + c->buflen, in, fill); /* Fill buffer */ in ossl_blake2s_update()
266 in += fill; in ossl_blake2s_update()
267 datalen -= fill; in ossl_blake2s_update()
/openssl/external/perl/Text-Template-1.56/
H A DREADME7 `fill in' a template, you evaluate the little programs and replace
45 You can fill in the template in a `Safe' compartment. This means that
/openssl/doc/man3/
H A DSSL_CTX_set_generate_session_id.pod56 callback may only fill part of the possible length and leave B<id_len>
70 fill in the bytes not used to code special information with random data
96 server id given, and will fill the rest with pseudo random bytes:
H A DOPENSSL_instrument_bus.pod32 performs at most B<max> probes in attempt to fill the B<vector[num]>,
H A DCMS_add0_cert.pod32 to fill in the signer certificate or to provide an extra CA certificate
H A DSSL_new_stream.pod57 caller may begin to use the new stream and fill the write buffer of the stream
H A DBIO_get_rpoll_descriptor.pod26 BIO_get_rpoll_descriptor() and BIO_get_wpoll_descriptor(), on success, fill
H A DBIO_ADDR.pod40 with routines that will fill it with information, such as
H A DOSSL_PARAM.pod289 must fill all I<data_size> bytes and ensure correct padding for the
340 could fill in the parameters like this:
H A DSSL_CTX_load_verify_locations.pod110 try to fill in missing certificates from B<CAfile>/B<CApath>, if the
H A DBIO_s_bio.pod172 flush the write buffer and/or fill the read buffer.
H A DOSSL_PARAM_int.pod382 could fill in the parameters like this:
H A DSSL_read_early_data.pod260 transmitted if enough data to fill an entire TCP packet is accumulated, or if
/openssl/crypto/x509/
H A Dv3_addr.c105 const int length, const unsigned char fill) in addr_expand() argument
114 if (fill == 0) in addr_expand()
120 memset(addr + bs->length, fill, length - bs->length); in addr_expand()
134 const unsigned char fill, const ASN1_BIT_STRING *bs) in i2r_address() argument
143 if (!addr_expand(addr, bs, 4, fill)) in i2r_address()
148 if (!addr_expand(addr, bs, 16, fill)) in i2r_address()
/openssl/doc/man7/
H A DEVP_CIPHER-SM4.pod47 stealing (CTS) is used to fill the block.
H A DEVP_CIPHER-AES.pod77 stealing (CTS) is used to fill the block.
H A Dproxy-certificates.pod150 right time. You also need to fill in the defaults when the EE
253 * another, temporary bit array and fill it with
/openssl/doc/internal/man3/
H A Dossl_cmp_certreq_new.pod48 The allocate a new message, fill it with the relevant data derived from
H A DOPTIONS.pod262 necessary range-checking. They return 1 if successful and fill in the
/openssl/doc/designs/quic-design/
H A Dtx-packetiser.md515 streams exceeds the Streams Budget for the packet, try to fill the packet
554 Thus, we choose what active stream to select to fill in a packet on a
557 fill a packet, we do also move to the next stream, so IRPM can still occur in
560 When we fill a packet with a stream, we start with any applicable `RESET_STREAM`
H A Drx-depacketizer.md66 Layer with a pointer to it, leaving it to the QUIC Read Record Layer to fill
H A Dquic-fifm.md304 a `QUIC_TXPIM_PKT` structure from the TXPIM, fill in the structure including
321 /* ACKM-specific data. Caller should fill this. */
H A Ddgram-api.md481 fill. We might want to have a way to specify how many buffers it should offer to

Completed in 67 milliseconds

12