Home
last modified time | relevance | path

Searched refs:high (Results 1 – 25 of 40) sorted by relevance

12

/openssl/crypto/ec/
H A Decp_nistp256.c384 u64 high, low; in felem_shrink() local
427 high = 0 - high; in felem_shrink()
490 u64 high, low; in smallfelem_square() local
496 out[1] = high; in smallfelem_square()
503 out[2] = high; in smallfelem_square()
510 out[3] = high; in smallfelem_square()
516 out[4] = high; in smallfelem_square()
536 out[5] = high; in smallfelem_square()
543 out[6] = high; in smallfelem_square()
556 out[7] = high; in smallfelem_square()
[all …]
/openssl/crypto/bn/
H A Dbn_local.h424 # define BN_UMULT_LOHI(low,high,a,b) \ argument
426 : "=a"(low),"=d"(high) \
437 # define BN_UMULT_LOHI(low,high,a,b) ((low)=_umul128((a),(b),&(high))) argument
447 # define BN_UMULT_LOHI(low,high,a,b) \ argument
449 : "=l"(low),"=h"(high) \
506 BN_ULONG high,low,ret,tmp=(a); \
508 BN_UMULT_LOHI(low,high,w,tmp); \
511 (c) += high; \
518 BN_ULONG high,low,ret,ta=(a); \
519 BN_UMULT_LOHI(low,high,w,ta); \
[all …]
H A DREADME.pod115 in B<rp>, and returns the high word (carry).
119 the result in B<rp>, and returns the high word (carry).
123 word-wise, and places the low and high bytes of the result in B<rp>.
130 result in B<rp>, and returns the high word (carry).
194 low word of the result in B<r> and the high word in B<c>.
197 places the low word of the result in B<r> and the high word in B<c>.
200 of the result in B<r0> and the high word in B<r1>.
223 B<BIGNUM> that contains the B<n> low or high words of B<a>.
H A Dbn_lib.c39 void BN_set_params(int mult, int high, int low, int mont) in BN_set_params() argument
47 if (high >= 0) { in BN_set_params()
48 if (high > (int)(sizeof(int) * 8) - 1) in BN_set_params()
49 high = sizeof(int) * 8 - 1; in BN_set_params()
50 bn_limit_bits_high = high; in BN_set_params()
51 bn_limit_num_high = 1 << high; in BN_set_params()
/openssl/crypto/modes/
H A Dsiv128.c34 uint32_t high = (uint32_t)(x >> 32); in byteswap8() local
37 high = (rotl8(high) & 0x00ff00ff) | (rotr8(high) & 0xff00ff00); in byteswap8()
39 return ((uint64_t)low) << 32 | (uint64_t)high; in byteswap8()
76 uint64_t high = siv128_getword(b, 0); in siv128_dbl() local
78 uint64_t high_carry = high & (((uint64_t)1) << 63); in siv128_dbl()
83 high = (high << 1) | high_mask; in siv128_dbl()
85 siv128_putword(b, 0, high); in siv128_dbl()
/openssl/crypto/bn/asm/
H A Dx86_64-gcc.c75 register BN_ULONG high,low; \
77 : "=a"(low),"=d"(high) \
81 : "+r"(carry),"+d"(high)\
85 : "+m"(r),"+d"(high) \
88 carry=high; \
92 register BN_ULONG high,low; \
94 : "=a"(low),"=d"(high) \
98 : "+r"(carry),"+d"(high)\
101 (r)=carry, carry=high; \
H A Dbn-c64xplus.asm57 [B0] ZERO A19 ; high part of accumulator
87 [B0] ZERO A19 ; high part of accumulator
234 || ZERO B19 ; high part of accumulator
274 || ZERO.S B19 ; high part of accumulator
/openssl/doc/man7/
H A Devp.pod5 evp - high-level cryptographic functions
13 The EVP library provides a high-level interface to cryptographic
28 The B<EVP_PKEY>I<XXX> functions provide a high-level interface to
81 using the high-level interface.
H A Dopenssl-threads.pod21 some general high-level guidance is given here.
H A Dossl-guide-migration.pod71 "high level" APIs (for example those functions prefixed with C<EVP>). They cannot
98 algorithms: the "high level" APIs (such as the C<EVP> APIs) and the "low level"
99 APIs. The high level APIs are typically designed to work across all algorithm
113 your code to use the high level APIs instead.
556 … low level APIs. In this case you will need to rewrite your code to use the high level APIs instead
1086 high-level EVP_PKEY APIs, e.g. L<EVP_PKEY_new(3)>, L<EVP_PKEY_up_ref(3)> and
1099 instead use the high level EVP APIs L<EVP_EncryptInit_ex(3)>,
1107 use the high level EVP APIs L<EVP_DigestInit_ex(3)>, L<EVP_DigestUpdate(3)>
1138 discouraged from use for a long time. Applications should instead use the high-level
/openssl/doc/designs/ddd/
H A DWINDOWS.md21 Neither select() nor poll() are, of course, high performance polling options.
22 Windows does not provide anything like epoll or kqueue. For high performance
41 actually more similar to a high-level asynchronous I/O library such as libuv or
/openssl/doc/man3/
H A DEVP_OpenInit.pod19 The EVP envelope routines are a high-level interface to envelope
H A DEVP_PKEY_CTX_set_scrypt_N.pod42 If RAM is exceeded because the load factors are chosen too high, the
H A DEVP_SealInit.pod20 The EVP envelope routines are a high-level interface to envelope
H A DEVP_VerifyInit.pod25 The EVP signature verification routines are a high-level interface to digital
H A DEVP_PKEY_CTX_new.pod65 by the OpenSSL high-level public key API. Contexts B<MUST NOT> be shared between
H A DOPENSSL_ia32cap.pod65 disables high-performance SSE2 code present in the crypto library, while
H A DEVP_SignInit.pod24 The EVP signature routines are a high-level interface to digital
H A DEVP_KDF.pod57 The EVP KDF routines are a high-level interface to Key Derivation Function
256 too high, the key derivation will fail.
H A DEVP_RAND.pod77 The EVP RAND routines are a high-level interface to random number generators
350 can reduce those values if you think they are too high. Explicitly
H A DBIO_set_callback.pod48 callback. The callback is called during most high-level BIO operations. It can
/openssl/doc/man1/
H A Dopenssl-pkcs8.pod.in179 Private keys encrypted using PKCS#5 v2.0 algorithms and high iteration
261 pkcs-tng mailing list using triple DES, DES and RC2 with high iteration
/openssl/
H A DREADME-PROVIDERS.md16 algorithm is used via the high level APIs a provider is selected. It is that
/openssl/doc/designs/quic-design/
H A Dtx-packetiser.md416 packets with high priority and due to their small size and the fact that there
462 management and are not particularly large, therefore they are given a high
466 are small and are given a high priority.
486 to be transmitted. Thus `ACK` frames are given a fairly high priority;
492 This ensures that the high priority of the ACK frame does not starve the
/openssl/doc/designs/
H A Dxof.md34 The assumption exists in both the high level call to EVP_DigestFinalXOF() as

Completed in 54 milliseconds

12