/openssl/crypto/bn/ |
H A D | bn_intern.c | 171 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 D | bn_lib.c | 265 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 D | bn_local.h | 215 # 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 D | README.pod | 86 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 D | bn.h | 17 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 D | riscv_arch.def | 14 * words. When specifying a new capability, write a new RISCV_DEFINE_CAP
|
/openssl/test/ |
H A D | json_test.c | 74 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 D | SSL_free.pod | 45 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 D | SSL_new_stream.pod | 31 of the QUIC stream SSL object; in other words, the QUIC stream SSL object must
|
H A D | BIO_s_file.pod | 80 UTF-8 encoded. In other words if you have to make it work in multi-
|
H A D | ERR_put_error.pod | 124 other words, they must be nonzero unsigned 18 bit integers).
|
H A D | DTLSv1_listen.pod | 73 words, failing to call BIO_connect() or a similar OS-specific function on a
|
H A D | BIO_sendmmsg.pod | 48 other words, if the integer returned by the function is greater than or equal to
|
H A D | EVP_PKEY_verify.pod | 114 words, it's not possible to specify a I<ctx> pre-loaded with an RSA pkey, or
|
H A D | EVP_PKEY_sign.pod | 119 words, it's not possible to specify a I<ctx> pre-loaded with an RSA pkey, or
|
H A D | SSL_get_value_uint.pod | 268 on "B" may result in state changes to "A". In other words, if event handling
|
/openssl/doc/internal/man3/ |
H A D | ossl_DER_w_begin_sequence.pod | 19 in pairs, as noted by the function names containing the words C<begin>
|
H A D | ossl_method_construct.pod | 95 In other words, the ossl_method_construct() caller is entirely responsible
|
/openssl/providers/implementations/encode_decode/ |
H A D | encode_key2text.c | 73 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 D | INTERNALS.Configure | 38 Instead of trying to describe in words, here are some example of what
|
H A D | README.md | 41 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 D | DERlib.pod | 41 recognised by their function name including the words C<begin> and
|
H A D | build.info.pod | 154 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 D | NEWS-FORMAT.md | 189 The words “bug fixes” or “mitigations” in the leader line should be deleted as
|
/openssl/crypto/bn/asm/ |
H A D | bn-c64xplus.asm | 16 ;; being the number of 32-bit words, addition - 8*n. Corresponding 4x
|