Searched refs:increment (Results 1 – 21 of 21) sorted by relevance
/openssl/providers/implementations/digests/ |
H A D | blake2b_prov.c | 162 size_t increment; in blake2b_compress() local 183 increment = len < BLAKE2B_BLOCKBYTES ? len : BLAKE2B_BLOCKBYTES; in blake2b_compress() 195 S->t[0] += increment; in blake2b_compress() 196 S->t[1] += (S->t[0] < increment); in blake2b_compress() 253 blocks += increment; in blake2b_compress() 254 len -= increment; in blake2b_compress()
|
H A D | blake2s_prov.c | 152 size_t increment; in blake2s_compress() local 173 increment = len < BLAKE2S_BLOCKBYTES ? len : BLAKE2S_BLOCKBYTES; in blake2s_compress() 185 S->t[0] += increment; in blake2s_compress() 186 S->t[1] += (S->t[0] < increment); in blake2s_compress() 241 blocks += increment; in blake2s_compress() 242 len -= increment; in blake2s_compress()
|
/openssl/doc/man3/ |
H A D | SSL_CTX_set_cert_store.pod | 52 SSL_CTX_set_cert_store() does not increment the B<store>'s reference 59 increment the reference count of the X509_STORE.
|
H A D | SSL_CTX_set1_verify_cert_store.pod | 49 increment the reference count of the supplied store so it must 51 not increment reference counts and the supplied store B<MUST NOT> be freed
|
H A D | X509_get_pubkey.pod | 29 after use. X509_get0_pubkey() is similar except it does B<not> increment
|
H A D | SSL_CTX_add1_chain_cert.pod | 98 increment the reference count of the supplied certificate or chain so it must 100 not increment reference counts and the supplied certificate or chain
|
H A D | OSSL_HPKE_CTX_new.pod | 398 decrypt arriving packets later. We provide a way to set the increment used for 402 nonce increment to be used for the next call. 406 open. (In other words, the first I<seq> increment defaults to zero.) 409 the OSSL_HPKE_CTX_get_seq() API can be used to retrieve the increment (in the
|
H A D | SSL_get_session.pod | 70 If the data is to be kept, SSL_get1_session() will increment the reference
|
H A D | SSL_set_bio.pod | 29 ownership of one reference. Therefore, it may be necessary to increment the
|
H A D | SSL_CTX_sess_set_get_cb.pod | 95 SSL engine to increment the reference count of the SSL_SESSION object;
|
H A D | ASN1_EXTERN_FUNCS.pod | 119 the buffer in I<*out>, and then increment I<*out> to point to immediately after
|
H A D | d2i_RSAPrivateKey.pod | 268 The reason for this-auto increment behaviour is to reflect a typical
|
H A D | d2i_X509.pod | 495 The reason for this-auto increment behaviour is to reflect a typical
|
H A D | X509_STORE_CTX_get_error.pod | 66 needs to increment its reference count via L<X509_up_ref(3)>.
|
H A D | X509_VERIFY_PARAM_set_flags.pod | 140 To obtain all names start with B<n> = 0 and increment B<n> as long as no NULL
|
/openssl/doc/internal/man3/ |
H A D | ossl_method_construct.pod | 101 This function is expected to increment the resulting method's reference count. 118 This function is expected to increment the I<method>'s reference count.
|
H A D | OSSL_METHOD_STORE.pod | 75 If the I<method_up_ref> function is given, it's called to increment the 106 The I<method_up_ref> function is called to increment the
|
/openssl/crypto/aes/asm/ |
H A D | aesni-x86_64.pl | 983 my $increment="%xmm9"; 1000 movaps %xmm9,0x30(%rsp) # $increment 1006 movdqa .Lincrement64(%rip),$increment 1041 paddq $increment,$iv 1093 movaps %xmm9,0x30(%rsp) # $increment 1100 movdqa .Lincrement64(%rip),$increment 1113 paddq $increment,$iv 1149 paddq $increment,$iv
|
/openssl/crypto/engine/ |
H A D | README.md | 155 (ie. it's simply an increment of the functional reference count, and no real
|
/openssl/doc/designs/quic-design/ |
H A D | record-layer.md | 275 `increment_sequence_ctr()`: force the record layer to increment its sequence
|
/openssl/ |
H A D | CHANGES.md | 14320 * Give DH, DSA, and RSA types their own `*_up_ref()` function to increment 17038 In BIO_puts, increment b->num_write as in BIO_write. 17773 (Some of the existing 'get' functions increment a reference
|
Completed in 164 milliseconds