Home
last modified time | relevance | path

Searched refs:words (Results 1 – 25 of 41) sorted by relevance

12

/openssl/crypto/bn/
H A Dbn_intern.c171 void bn_set_static_words(BIGNUM *a, const BN_ULONG *words, int size) in bn_set_static_words() argument
177 a->d = (BN_ULONG *)words; in bn_set_static_words()
184 int bn_set_words(BIGNUM *a, const BN_ULONG *words, int num_words) in bn_set_words() argument
191 memcpy(a->d, words, sizeof(BN_ULONG) * num_words); in bn_set_words()
H A Dbn_lib.c265 static BN_ULONG *bn_expand_internal(const BIGNUM *b, int words) in bn_expand_internal() argument
269 if (words > (INT_MAX / (4 * BN_BITS2))) { in bn_expand_internal()
278 a = OPENSSL_secure_zalloc(words * sizeof(*a)); in bn_expand_internal()
280 a = OPENSSL_zalloc(words * sizeof(*a)); in bn_expand_internal()
284 assert(b->top <= words); in bn_expand_internal()
299 BIGNUM *bn_expand2(BIGNUM *b, int words) in bn_expand2() argument
301 if (words > b->dmax) { in bn_expand2()
302 BN_ULONG *a = bn_expand_internal(b, words); in bn_expand2()
308 b->dmax = words; in bn_expand2()
1146 BIGNUM *bn_wexpand(BIGNUM *a, int words) in bn_wexpand() argument
[all …]
H A Dbn_local.h215 # define bn_wcheck_size(bn, words) \ argument
218 assert((words) <= (_bnum2)->dmax && \
219 (words) >= (_bnum2)->top); \
231 # define bn_wcheck_size(bn, words) argument
H A DREADME.pod86 The integer value is stored in B<d>, a malloc()ed array of words (B<BN_ULONG>),
92 is the number of words being used, so for a value of 4, bn.d[0]=4 and
162 arrays B<r>, B<a> and B<b>. It computes the B<n> low words of
181 words long, bn_mul_recursive() if they are larger than
218 bn_print() prints B<a> to stderr. bn_dump() prints B<n> words at B<d>
223 B<BIGNUM> that contains the B<n> low or high words of B<a>.
/openssl/include/crypto/
H A Dbn.h17 BIGNUM *bn_wexpand(BIGNUM *a, int words);
18 BIGNUM *bn_expand2(BIGNUM *a, int words);
51 void bn_set_static_words(BIGNUM *a, const BN_ULONG *words, int size);
62 int bn_set_words(BIGNUM *a, const BN_ULONG *words, int num_words);
H A Driscv_arch.def14 * words. When specifying a new capability, write a new RISCV_DEFINE_CAP
/openssl/test/
H A Djson_test.c74 const struct script_word *words; member
547 const struct script_word *words = info->words; in run_script() local
555 #define GET_WORD() (w = words[wp++]) in run_script()
/openssl/doc/man3/
H A DSSL_free.pod45 If the stream has a sending part (in other words, if it is bidirectional or a
54 If the stream has a receiving part (in other words, if it is bidirectional or a
H A DSSL_new_stream.pod31 of the QUIC stream SSL object; in other words, the QUIC stream SSL object must
H A DBIO_s_file.pod80 UTF-8 encoded. In other words if you have to make it work in multi-
H A DERR_put_error.pod124 other words, they must be nonzero unsigned 18 bit integers).
H A DDTLSv1_listen.pod73 words, failing to call BIO_connect() or a similar OS-specific function on a
H A DBIO_sendmmsg.pod48 other words, if the integer returned by the function is greater than or equal to
H A DEVP_PKEY_verify.pod114 words, it's not possible to specify a I<ctx> pre-loaded with an RSA pkey, or
H A DEVP_PKEY_sign.pod119 words, it's not possible to specify a I<ctx> pre-loaded with an RSA pkey, or
H A DSSL_get_value_uint.pod268 on "B" may result in state changes to "A". In other words, if event handling
/openssl/doc/internal/man3/
H A Dossl_DER_w_begin_sequence.pod19 in pairs, as noted by the function names containing the words C<begin>
H A Dossl_method_construct.pod95 In other words, the ossl_method_construct() caller is entirely responsible
/openssl/providers/implementations/encode_decode/
H A Dencode_key2text.c73 BN_ULONG *words = bn_get_words(bn); in DEFINE_SPECIAL_STACK_OF_CONST() local
79 label, post_label_spc, neg, words[0], neg, words[0]); in DEFINE_SPECIAL_STACK_OF_CONST()
/openssl/Configurations/
H A DINTERNALS.Configure38 Instead of trying to describe in words, here are some example of what
H A DREADME.md41 This MUST be an array of words.
43 This MUST be an array of words.
215 name). This is a string of words that describe
223 The valid words are:
317 Very roughly speaking, linking is done like this (words in braces
/openssl/doc/internal/man7/
H A DDERlib.pod41 recognised by their function name including the words C<begin> and
H A Dbuild.info.pod154 C<libcookie> (in other words, the library will be included when
477 I<item> (in other words, we use the exact same style of
/openssl/dev/
H A DNEWS-FORMAT.md189 The words “bug fixes” or “mitigations” in the leader line should be deleted as
/openssl/crypto/bn/asm/
H A Dbn-c64xplus.asm16 ;; being the number of 32-bit words, addition - 8*n. Corresponding 4x

Completed in 52 milliseconds

12