/crypto/test/ |
A D | file_util.h | 53 ScopedFD(ScopedFD &&other) { *this = std::move(other); } in ScopedFD() argument 54 ScopedFD &operator=(ScopedFD other) { 55 reset(other.release()); 88 TemporaryFile(TemporaryFile &other) { *this = std::move(other); } in TemporaryFile() argument 89 TemporaryFile& operator=(TemporaryFile&&other) { 91 path_ = std::exchange(other.path_, {}); 122 TemporaryDirectory(TemporaryDirectory &other) { *this = std::move(other); } in TemporaryDirectory() argument 123 TemporaryDirectory& operator=(TemporaryDirectory&&other) { 125 path_ = std::exchange(other.path_, {}); 126 files_ = std::exchange(other.files_, {});
|
/crypto/ |
A D | mem_internal.h | 92 Array(Array &&other) { *this = std::move(other); } 97 Array &operator=(Array &&other) { 99 other.Release(&data_, &size_); 234 Vector(Vector &&other) { *this = std::move(other); } 240 std::swap(data_, other.data_); 381 InplaceVector(const InplaceVector &other) { *this = other; } 382 InplaceVector(InplaceVector &&other) { *this = std::move(other); } 385 if (this != &other) { 386 CopyFrom(other); 392 std::uninitialized_move(other.begin(), other.end(), data()); [all …]
|
A D | mem_test.cc | 321 NoSelfMove(NoSelfMove &&other) { *this = std::move(other); } in TEST() argument 322 NoSelfMove &operator=(NoSelfMove &&other) { in TEST() argument 323 BSSL_CHECK(this != &other); in TEST() 324 v_ = std::move(other.v_); in TEST()
|
/crypto/spake2plus/ |
A D | spake2plus_test.cc | 83 bool operator==(const CacheKey &other) const { in operator ==() 85 std::tie(other.id_prover, other.id_verifier, other.password); in operator ==()
|
/crypto/perlasm/ |
A D | readme | 56 j+=other(data[i]); 67 &external_label("other"); 86 &call( "other");
|
/crypto/rand/ |
A D | urandom_test.cc | 86 bool operator==(const Event &other) const { in operator ==() 87 return type == other.type && // in operator ==() 88 length == other.length && // in operator ==() 89 flags == other.flags && // in operator ==() 90 filename == other.filename; in operator ==()
|
/crypto/fipsmodule/ |
A D | FIPS.md | 86 …ck is used to stop all other threads from using the RNG once this process has begun. Thus the main… 104 … and end of the text and rodata sections. The linker script also discards other types of data sect… 108 Once the partially-linked result is linked again, with other parts of libcrypto, to produce `libcry… 120 …utside of the module. Most obviously these include `malloc`, `memcpy` and other libc functions, bu… 142 The script performs a number of other transformations which are worth noting but do not warrant the…
|
/crypto/bio/ |
A D | bio_test.cc | 70 OwnedSocket(OwnedSocket &&other) { *this = std::move(other); } in OwnedSocket() argument 72 OwnedSocket &operator=(OwnedSocket &&other) { in operator =() argument 73 reset(other.release()); in operator =()
|
/crypto/fipsmodule/rand/ |
A D | rand.cc.inc | 195 // obtained via a method other than from the kernel. In these cases entropy 304 // If we used something other than system entropy then also 345 // Intel chips have fast RDRAND instructions while, in other cases, RDRAND can
|
/crypto/fipsmodule/slhdsa/ |
A D | merkle.cc.inc | 124 // All other layers
|
/crypto/fipsmodule/bn/ |
A D | cmp.cc.inc | 144 // If |a| or |b| has more words than the other, all those words must be zero.
|
A D | div.cc.inc | 162 // cache side channels. Division with secret inputs should use other
|
A D | exponentiation.cc.inc | 568 // and its interaction with other parts of the project. Determine whether this
|
/crypto/fipsmodule/aes/ |
A D | gcm.cc.inc | 35 // trashing effect. In other words idea is to hash data while it's 343 // The caller must have finished the AAD before providing other input.
|
/crypto/x509/ |
A D | v3_cpols.cc | 82 ASN1_ADB_TEMPLATE(policydefault) = ASN1_SIMPLE(POLICYQUALINFO, d.other,
|
/crypto/fipsmodule/rsa/ |
A D | rsa.cc.inc | 651 // Check that no other information follows the hash value (FIPS 186-4 Section 795 // may be unreduced because other implementations use the Euler totient. We
|
A D | rsa_impl.cc.inc | 147 // exponents with correct widths. Note that other threads may concurrently 370 // for other threads to use.
|
/crypto/fipsmodule/mldsa/ |
A D | mldsa.cc.inc | 945 // of the other bits may be set. First, select all the MSBs. 947 // For each nibble where the MSB is set, form a mask of all the other bits. 977 // be >= 5. So if the MSB of any triple is set, none of the other bits may 980 // For each triple where the MSB is set, form a mask of all the other bits. 1170 // independent of each other and the original seed, so leaking information
|
/crypto/fipsmodule/ec/ |
A D | p256.cc.inc | 341 // do other additions every 5 doublings
|
A D | p256-nistz.cc.inc | 312 // not stored. All other values are actually stored with an offset of -1 in
|
A D | ec.cc.inc | 958 // returns NULL, so return some other garbage pointer.
|
/crypto/fipsmodule/mlkem/ |
A D | mlkem.cc.inc | 583 // numbers close to each other together. The formula used is
|
/crypto/obj/ |
A D | objects.txt | 564 # other names
|