/external/flatbuffers/kotlin/benchmark/src/jvmMain/kotlin/com/google/flatbuffers/kotlin/benchmark/ |
D | UTF8Benchmark.kt | 32 import kotlin.random.Random 168 data[i] = Random.nextInt(0, 127).toByte() in populateAscii() 180 val w = Random.nextInt() and 0xFF in populateUTF8() 184 data[i++] = (0xC2 + Random.nextInt() % (0xDF - 0xC2 + 1)).toByte() in populateUTF8() 185 data[i++] = (0x80 + Random.nextInt() % (0xBF - 0x80 + 1)).toByte() in populateUTF8() 189 data[i++] = (0xA0 + Random.nextInt() % (0xBF - 0xA0 + 1)).toByte() in populateUTF8() 190 data[i++] = (0x80 + Random.nextInt() % (0xBF - 0x80 + 1)).toByte() in populateUTF8() 194 data[i++] = (0x80 + Random.nextInt() % (0xBF - 0x80 + 1)).toByte() in populateUTF8() 195 data[i++] = (0x80 + Random.nextInt() % (0xBF - 0x80 + 1)).toByte() in populateUTF8() 199 data[i++] = (0x80 + Random.nextInt() % (0x9F - 0x80 + 1)).toByte() in populateUTF8() [all …]
|
/external/deqp/framework/delibs/decpp/ |
D | deRandom.hpp | 38 class Random class 41 Random(uint32_t seed) in Random() function in de::Random 45 ~Random(void) in ~Random() 106 bool operator==(const Random &other) const; 107 bool operator!=(const Random &other) const; 115 inline float Random::getFloat(float min, float max) in getFloat() 121 inline double Random::getDouble(double min, double max) in getDouble() 127 inline int Random::getInt(int min, int max) in getInt() 139 void Random::choose(InputIter first, InputIter last, OutputIter result, int numItems) in choose() 162 T Random::choose(InputIter first, InputIter last) in choose() [all …]
|
D | deRandom.cpp | 42 bool Random::operator==(const Random &other) const in operator ==() 47 bool Random::operator!=(const Random &other) const in operator !=() 59 Random rnd(4789); in Random_selfTest() 68 Random rnd(4789); in Random_selfTest() 78 Random rnd(4789); in Random_selfTest() 90 Random rnd(4789); in Random_selfTest() 101 Random rnd(4789); in Random_selfTest() 112 Random rnd(4789); in Random_selfTest() 126 Random rnd(4789); in Random_selfTest() 142 Random rnd(4789); in Random_selfTest() [all …]
|
/external/tink/java_src/src/test/java/com/google/crypto/tink/subtle/ |
D | EncryptThenAuthenticateTest.java | 118 Aead aead = getAead(Random.randBytes(16), Random.randBytes(16), 16, 16, "HMACSHA256"); in testBitFlipCiphertext() 119 byte[] plaintext = Random.randBytes(1001); in testBitFlipCiphertext() 120 byte[] aad = Random.randBytes(13); in testBitFlipCiphertext() 133 Aead aead = getAead(Random.randBytes(16), Random.randBytes(16), 16, 16, "HMACSHA256"); in testBitFlipAad() 134 byte[] plaintext = Random.randBytes(1001); in testBitFlipAad() 135 byte[] aad = Random.randBytes(13); in testBitFlipAad() 148 Aead aead = getAead(Random.randBytes(16), Random.randBytes(16), 16, 16, "HMACSHA256"); in testEncryptDecrypt() 149 byte[] plaintext = Random.randBytes(1001); in testEncryptDecrypt() 150 byte[] aad = Random.randBytes(13); in testEncryptDecrypt() 162 Aead aead = getAead(Random.randBytes(16), Random.randBytes(16), 16, 16, "HMACSHA256"); in testNullPlaintextOrCiphertext() [all …]
|
D | AesSivTest.java | 103 DeterministicAead dead = new AesSiv(Random.randBytes(keySize)); in testEncryptDecryptWithEmptyPlaintext() 106 byte[] aad = Random.randBytes(Random.randInt(128) + 1); in testEncryptDecryptWithEmptyPlaintext() 120 DeterministicAead dead = new AesSiv(Random.randBytes(keySize)); in testEncryptDecryptWithEmptyAssociatedData() 122 byte[] plaintext = Random.randBytes(Random.randInt(1024) + 1); in testEncryptDecryptWithEmptyAssociatedData() 137 DeterministicAead dead = new AesSiv(Random.randBytes(keySize)); in testEncryptDecryptWithEmptyPlaintextAndEmptyAssociatedData() 153 DeterministicAead dead = new AesSiv(Random.randBytes(keySize)); in testEncryptDecryptWithNullAssociatedData() 155 byte[] plaintext = Random.randBytes(Random.randInt(1024) + 1); in testEncryptDecryptWithNullAssociatedData() 169 DeterministicAead dead = new AesSiv(Random.randBytes(keySize)); in testEncryptDecryptWithNullAndEmptyAssociatedDataEquivalent() 171 byte[] plaintext = Random.randBytes(Random.randInt(1024) + 1); in testEncryptDecryptWithNullAndEmptyAssociatedDataEquivalent() 194 DeterministicAead dead = new AesSiv(Random.randBytes(keySize)); in testEncryptDecryptWithEmptyPlaintextAndNullAssociatedData() [all …]
|
/external/tink-java/src/test/java/com/google/crypto/tink/aead/internal/ |
D | AesGcmJceUtilTest.java | 23 import com.google.crypto.tink.subtle.Random; 37 byte[] keyValue = Random.randBytes(16); in encryptDecrypt_works() 38 byte[] plaintext = Random.randBytes(100); in encryptDecrypt_works() 41 byte[] iv = Random.randBytes(AesGcmJceUtil.IV_SIZE_IN_BYTES); in encryptDecrypt_works() 50 byte[] buf = Bytes.concat(Random.randBytes(offset), iv, Random.randBytes(3)); in encryptDecrypt_works() 61 assertThat(AesGcmJceUtil.getSecretKey(Random.randBytes(16))).isNotNull(); in getSecretKey_validatesKeySize() 62 assertThat(AesGcmJceUtil.getSecretKey(Random.randBytes(32))).isNotNull(); in getSecretKey_validatesKeySize() 64 GeneralSecurityException.class, () -> AesGcmJceUtil.getSecretKey(Random.randBytes(15))); in getSecretKey_validatesKeySize() 66 GeneralSecurityException.class, () -> AesGcmJceUtil.getSecretKey(Random.randBytes(17))); in getSecretKey_validatesKeySize() 68 GeneralSecurityException.class, () -> AesGcmJceUtil.getSecretKey(Random.randBytes(31))); in getSecretKey_validatesKeySize() [all …]
|
D | InsecureNonceAesGcmJceTest.java | 30 import com.google.crypto.tink.subtle.Random; 77 byte[] associatedData = Random.randBytes(20); in testEncryptDecrypt() 79 byte[] key = Random.randBytes(keySize); in testEncryptDecrypt() 82 byte[] message = Random.randBytes(messageSize); in testEncryptDecrypt() 83 byte[] iv = Random.randBytes(InsecureNonceAesGcmJce.IV_SIZE_IN_BYTES); in testEncryptDecrypt() 95 byte[] key = Random.randBytes(32); in encryptDecryptWithCiphertextOffsets() 97 byte[] iv = Random.randBytes(InsecureNonceAesGcmJce.IV_SIZE_IN_BYTES); in encryptDecryptWithCiphertextOffsets() 98 byte[] message = Random.randBytes(42); in encryptDecryptWithCiphertextOffsets() 99 byte[] associatedData = Random.randBytes(20); in encryptDecryptWithCiphertextOffsets() 118 byte[] key = Random.randBytes(32); in ciphertext_lengthIsMessageSizePlusTagSize() [all …]
|
D | InsecureNonceChaCha20Poly1305JceTest.java | 28 import com.google.crypto.tink.subtle.Random; 102 InsecureNonceChaCha20Poly1305Jce cipher = createInstance(Random.randBytes(KEY_SIZE_IN_BYTES)); in testEncryptDecrypt() 104 byte[] nonce = Random.randBytes(NONCE_SIZE_IN_BYTES); in testEncryptDecrypt() 105 byte[] message = Random.randBytes(i); in testEncryptDecrypt() 106 byte[] aad = Random.randBytes(i); in testEncryptDecrypt() 118 byte[] key = Random.randBytes(32); in encryptDecryptWithCiphertextOffsets() 120 byte[] nonce = Random.randBytes(NONCE_SIZE_IN_BYTES); in encryptDecryptWithCiphertextOffsets() 121 byte[] message = Random.randBytes(42); in encryptDecryptWithCiphertextOffsets() 122 byte[] associatedData = Random.randBytes(20); in encryptDecryptWithCiphertextOffsets() 149 byte[] plaintext = Random.randBytes(dataSize); in testLongMessages() [all …]
|
D | InsecureNonceXChaCha20Poly1305Test.java | 25 import com.google.crypto.tink.subtle.Random; 147 new InsecureNonceXChaCha20Poly1305(Random.randBytes(KEY_SIZE_IN_BYTES)); in testEncryptDecrypt() 149 byte[] message = Random.randBytes(i); in testEncryptDecrypt() 150 byte[] aad = Random.randBytes(i); in testEncryptDecrypt() 151 byte[] nonce = Random.randBytes(24); in testEncryptDecrypt() 166 byte[] plaintext = Random.randBytes(dataSize); in testLongMessages() 167 byte[] aad = Random.randBytes(dataSize / 3); in testLongMessages() 168 byte[] key = Random.randBytes(KEY_SIZE_IN_BYTES); in testLongMessages() 170 byte[] nonce = Random.randBytes(24); in testLongMessages() 180 byte[] key = Random.randBytes(KEY_SIZE_IN_BYTES); in testModifyCiphertext() [all …]
|
/external/guava/guava-tests/test/com/google/common/hash/ |
D | HashTestUtils.java | 37 import java.util.Random; 103 void performAction(Random random, Iterable<? extends PrimitiveSink> sinks) { in PUT_BOOLEAN() 112 void performAction(Random random, Iterable<? extends PrimitiveSink> sinks) { in PUT_BYTE() 121 void performAction(Random random, Iterable<? extends PrimitiveSink> sinks) { in PUT_SHORT() 130 void performAction(Random random, Iterable<? extends PrimitiveSink> sinks) { in PUT_CHAR() 139 void performAction(Random random, Iterable<? extends PrimitiveSink> sinks) { in PUT_INT() 148 void performAction(Random random, Iterable<? extends PrimitiveSink> sinks) { in PUT_LONG() 157 void performAction(Random random, Iterable<? extends PrimitiveSink> sinks) { in PUT_FLOAT() 166 void performAction(Random random, Iterable<? extends PrimitiveSink> sinks) { in PUT_DOUBLE() 175 void performAction(Random random, Iterable<? extends PrimitiveSink> sinks) { in PUT_BYTES() [all …]
|
/external/guava/android/guava-tests/test/com/google/common/hash/ |
D | HashTestUtils.java | 37 import java.util.Random; 103 void performAction(Random random, Iterable<? extends PrimitiveSink> sinks) { in PUT_BOOLEAN() 112 void performAction(Random random, Iterable<? extends PrimitiveSink> sinks) { in PUT_BYTE() 121 void performAction(Random random, Iterable<? extends PrimitiveSink> sinks) { in PUT_SHORT() 130 void performAction(Random random, Iterable<? extends PrimitiveSink> sinks) { in PUT_CHAR() 139 void performAction(Random random, Iterable<? extends PrimitiveSink> sinks) { in PUT_INT() 148 void performAction(Random random, Iterable<? extends PrimitiveSink> sinks) { in PUT_LONG() 157 void performAction(Random random, Iterable<? extends PrimitiveSink> sinks) { in PUT_FLOAT() 166 void performAction(Random random, Iterable<? extends PrimitiveSink> sinks) { in PUT_DOUBLE() 175 void performAction(Random random, Iterable<? extends PrimitiveSink> sinks) { in PUT_BYTES() [all …]
|
/external/webrtc/rtc_base/ |
D | random.h | 22 class Random { 35 explicit Random(uint64_t seed); 37 Random() = delete; 38 Random(const Random&) = delete; 39 Random& operator=(const Random&) = delete; 84 float Random::Rand<float>(); 88 double Random::Rand<double>(); 92 bool Random::Rand<bool>();
|
D | random.cc | 19 Random::Random(uint64_t seed) { in Random() function in webrtc::Random 24 uint32_t Random::Rand(uint32_t t) { in Rand() 37 uint32_t Random::Rand(uint32_t low, uint32_t high) { in Rand() 42 int32_t Random::Rand(int32_t low, int32_t high) { in Rand() 50 float Random::Rand<float>() { in Rand() 57 double Random::Rand<double>() { in Rand() 64 bool Random::Rand<bool>() { in Rand() 68 double Random::Gaussian(double mean, double standard_deviation) { in Gaussian() 82 double Random::Exponential(double lambda) { in Exponential()
|
/external/tink/java_src/src/test/java/com/google/crypto/tink/aead/internal/ |
D | InsecureNonceAesGcmJceTest.java | 30 import com.google.crypto.tink.subtle.Random; 79 byte[] key = Random.randBytes(keySize); in testEncryptDecrypt_withPrependedIv() 82 byte[] message = Random.randBytes(messageSize); in testEncryptDecrypt_withPrependedIv() 83 byte[] iv = Random.randBytes(InsecureNonceAesGcmJce.IV_SIZE_IN_BYTES); in testEncryptDecrypt_withPrependedIv() 97 byte[] key = Random.randBytes(keySize); in testEncryptDecrypt_withoutPrependedIv() 100 byte[] message = Random.randBytes(messageSize); in testEncryptDecrypt_withoutPrependedIv() 101 byte[] iv = Random.randBytes(InsecureNonceAesGcmJce.IV_SIZE_IN_BYTES); in testEncryptDecrypt_withoutPrependedIv() 117 new InsecureNonceAesGcmJce(Random.randBytes(16), /*prependIv=*/ false); in testEncryptWithAad_shouldFailOnAndroid19OrOlder() 118 byte[] message = Random.randBytes(20); in testEncryptWithAad_shouldFailOnAndroid19OrOlder() 119 byte[] aad = Random.randBytes(20); in testEncryptWithAad_shouldFailOnAndroid19OrOlder() [all …]
|
D | InsecureNonceXChaCha20Poly1305Test.java | 25 import com.google.crypto.tink.subtle.Random; 147 new InsecureNonceXChaCha20Poly1305(Random.randBytes(KEY_SIZE_IN_BYTES)); in testEncryptDecrypt() 149 byte[] message = Random.randBytes(i); in testEncryptDecrypt() 150 byte[] aad = Random.randBytes(i); in testEncryptDecrypt() 151 byte[] nonce = Random.randBytes(24); in testEncryptDecrypt() 166 byte[] plaintext = Random.randBytes(dataSize); in testLongMessages() 167 byte[] aad = Random.randBytes(dataSize / 3); in testLongMessages() 168 byte[] key = Random.randBytes(KEY_SIZE_IN_BYTES); in testLongMessages() 170 byte[] nonce = Random.randBytes(24); in testLongMessages() 180 byte[] key = Random.randBytes(KEY_SIZE_IN_BYTES); in testModifyCiphertext() [all …]
|
/external/eigen/test/ |
D | rvalue_types.cpp | 129 CALL_SUBTEST_1(rvalue_copyassign( MatrixXf::Random(50,50).eval() )); in EIGEN_DECLARE_TEST() 130 CALL_SUBTEST_1(rvalue_copyassign( ArrayXXf::Random(50,50).eval() )); in EIGEN_DECLARE_TEST() 132 CALL_SUBTEST_1(rvalue_copyassign( Matrix<float,1,Dynamic>::Random(50).eval() )); in EIGEN_DECLARE_TEST() 133 CALL_SUBTEST_1(rvalue_copyassign( Array<float,1,Dynamic>::Random(50).eval() )); in EIGEN_DECLARE_TEST() 135 CALL_SUBTEST_1(rvalue_copyassign( Matrix<float,Dynamic,1>::Random(50).eval() )); in EIGEN_DECLARE_TEST() 136 CALL_SUBTEST_1(rvalue_copyassign( Array<float,Dynamic,1>::Random(50).eval() )); in EIGEN_DECLARE_TEST() 138 CALL_SUBTEST_2(rvalue_copyassign( Array<float,2,1>::Random().eval() )); in EIGEN_DECLARE_TEST() 139 CALL_SUBTEST_2(rvalue_copyassign( Array<float,3,1>::Random().eval() )); in EIGEN_DECLARE_TEST() 140 CALL_SUBTEST_2(rvalue_copyassign( Array<float,4,1>::Random().eval() )); in EIGEN_DECLARE_TEST() 142 CALL_SUBTEST_2(rvalue_copyassign( Array<float,2,2>::Random().eval() )); in EIGEN_DECLARE_TEST() [all …]
|
D | solverbase.h | 8 DstType m2 = DstType::Random(cols,cols2); in check_solverbase() 10 DstType solver_solution = DstType::Random(cols,cols2); in check_solverbase() 13 solver_solution = DstType::Random(cols,cols2); in check_solverbase() 17 m3 = RhsType::Random(rows,cols2); in check_solverbase() 19 RhsType solver_solution2 = RhsType::Random(rows,cols2); in check_solverbase() 22 solver_solution2 = RhsType::Random(rows,cols2); in check_solverbase() 26 m3 = RhsType::Random(rows,cols2); in check_solverbase() 28 solver_solution2 = RhsType::Random(rows,cols2); in check_solverbase() 31 solver_solution2 = RhsType::Random(rows,cols2); in check_solverbase()
|
D | geo_orthomethods.cpp | 27 Vector3 v0 = Vector3::Random(), in orthomethods_3() 28 v1 = Vector3::Random(), in orthomethods_3() 29 v2 = Vector3::Random(); in orthomethods_3() 36 VERIFY_IS_MUCH_SMALLER_THAN(v1.cross(Vector3::Random()).dot(v1), Scalar(1)); in orthomethods_3() 49 Vector3 vec3 = Vector3::Random(); in orthomethods_3() 56 …VERIFY_IS_MUCH_SMALLER_THAN((mat3.adjoint() * mat3.colwise().cross(Vector3::Random())).diagonal().… in orthomethods_3() 59 …VERIFY_IS_MUCH_SMALLER_THAN((vec3.adjoint() * Matrix3::Random().colwise().cross(vec3)).cwiseAbs().… in orthomethods_3() 65 Vector4 v40 = Vector4::Random(), in orthomethods_3() 66 v41 = Vector4::Random(), in orthomethods_3() 67 v42 = Vector4::Random(); in orthomethods_3() [all …]
|
/external/openthread/src/core/api/ |
D | random_noncrypto_api.cpp | 40 uint32_t otRandomNonCryptoGetUint32(void) { return Random::NonCrypto::GetUint32(); } in otRandomNonCryptoGetUint32() 42 uint8_t otRandomNonCryptoGetUint8(void) { return Random::NonCrypto::GetUint8(); } in otRandomNonCryptoGetUint8() 44 uint16_t otRandomNonCryptoGetUint16(void) { return Random::NonCrypto::GetUint16(); } in otRandomNonCryptoGetUint16() 48 return Random::NonCrypto::GetUint8InRange(aMin, aMax); in otRandomNonCryptoGetUint8InRange() 53 return Random::NonCrypto::GetUint16InRange(aMin, aMax); in otRandomNonCryptoGetUint16InRange() 58 return Random::NonCrypto::GetUint32InRange(aMin, aMax); in otRandomNonCryptoGetUint32InRange() 61 void otRandomNonCryptoFillBuffer(uint8_t *aBuffer, uint16_t aSize) { Random::NonCrypto::FillBuffer(… in otRandomNonCryptoFillBuffer() 65 return Random::NonCrypto::AddJitter(aValue, aJitter); in otRandomNonCryptoAddJitter()
|
/external/tink/java_src/src/test/java/com/google/crypto/tink/integration/awskms/ |
D | AwsKmsAeadTest.java | 26 import com.google.crypto.tink.subtle.Random; 50 byte[] aad = Random.randBytes(20); in testEncryptDecryptWithKnownKeyArn_success() 51 byte[] message = Random.randBytes(42); in testEncryptDecryptWithKnownKeyArn_success() 62 byte[] aad = Random.randBytes(20); in testEncryptWithUnknownKeyArn_fails() 63 byte[] message = Random.randBytes(20); in testEncryptWithUnknownKeyArn_fails() 71 byte[] aad = Random.randBytes(20); in testDecryptWithInvalidKeyArn_fails() 72 byte[] invalidCiphertext = Random.randBytes(2); in testDecryptWithInvalidKeyArn_fails() 81 byte[] aad = Random.randBytes(20); in testDecryptWithDifferentKeyArn_fails() 82 byte[] message = Random.randBytes(20); in testDecryptWithDifferentKeyArn_fails() 96 byte[] aad = Random.randBytes(20); in testDecryptWithAliasKeyArn_success() [all …]
|
/external/tink/java_src/src/test/java/com/google/crypto/tink/internal/ |
D | RandomWithoutConscryptTest.java | 36 Random.validateUsesConscrypt(); in validateUsesConscrypt_onlyWorksOnAndroid() 38 assertThrows(GeneralSecurityException.class, Random::validateUsesConscrypt); in validateUsesConscrypt_onlyWorksOnAndroid() 44 assertThat(Random.randBytes(10)).hasLength(10); in randBytes_works() 49 assertThat(Random.randInt(5)).isLessThan(5); in randIntWithMax_works() 54 int unused = Random.randInt(); in randInt_works() 59 assertThat(Random.randBytes(10)).isNotEqualTo(Random.randBytes(10)); in randBytes_areDifferent() 71 System.arraycopy(Random.randBytes(10), 0, b0, 0, 10); in randdomBytesInDifferentThreads_areDifferent() 78 System.arraycopy(Random.randBytes(10), 0, b1, 0, 10); in randdomBytesInDifferentThreads_areDifferent()
|
/external/tink-java/src/test/java/com/google/crypto/tink/internal/ |
D | RandomWithoutConscryptTest.java | 36 Random.validateUsesConscrypt(); in validateUsesConscrypt_onlyWorksOnAndroid() 38 assertThrows(GeneralSecurityException.class, Random::validateUsesConscrypt); in validateUsesConscrypt_onlyWorksOnAndroid() 44 assertThat(Random.randBytes(10)).hasLength(10); in randBytes_works() 49 assertThat(Random.randInt(5)).isLessThan(5); in randIntWithMax_works() 54 int unused = Random.randInt(); in randInt_works() 59 assertThat(Random.randBytes(10)).isNotEqualTo(Random.randBytes(10)); in randBytes_areDifferent() 71 System.arraycopy(Random.randBytes(10), 0, b0, 0, 10); in randdomBytesInDifferentThreads_areDifferent() 78 System.arraycopy(Random.randBytes(10), 0, b1, 0, 10); in randdomBytesInDifferentThreads_areDifferent()
|
/external/jazzer-api/src/test/java/com/code_intelligence/jazzer/instrumentor/ |
D | CoverageInstrumentationSpecialCasesTarget.java | 17 import java.util.Random; 21 if (new Random().nextBoolean()) { in newAfterJump() 24 return new ReturnClass(new Random().nextBoolean() ? "foo" : "bar"); in newAfterJump() 28 new Random(); in newAndTryCatch() 30 new Random(); in newAndTryCatch() 33 new Random(); in newAndTryCatch()
|
/external/deqp/framework/common/ |
D | tcuRandomValueIterator.hpp | 33 T getRandomValue(de::Random &rnd) in getRandomValue() 49 inline uint8_t getRandomValue<uint8_t>(de::Random &rnd) in getRandomValue() 54 inline uint16_t getRandomValue<uint16_t>(de::Random &rnd) in getRandomValue() 59 inline uint32_t getRandomValue<uint32_t>(de::Random &rnd) in getRandomValue() 64 inline uint64_t getRandomValue<uint64_t>(de::Random &rnd) in getRandomValue() 69 inline int8_t getRandomValue<int8_t>(de::Random &rnd) in getRandomValue() 74 inline int16_t getRandomValue<int16_t>(de::Random &rnd) in getRandomValue() 79 inline int32_t getRandomValue<int32_t>(de::Random &rnd) in getRandomValue() 84 inline int64_t getRandomValue<int64_t>(de::Random &rnd) in getRandomValue() 122 de::Random m_rnd;
|
/external/tink/cc/subtle/ |
D | random.cc | 38 Random::GetRandomBytes( in GetRandomUint() 57 util::Status Random::GetRandomBytes(absl::Span<char> buffer) { in GetRandomBytes() 67 std::string Random::GetRandomBytes(size_t length) { in GetRandomBytes() 76 uint32_t Random::GetRandomUInt32() { return GetRandomUint<uint32_t>(); } in GetRandomUInt32() 77 uint16_t Random::GetRandomUInt16() { return GetRandomUint<uint16_t>(); } in GetRandomUInt16() 78 uint8_t Random::GetRandomUInt8() { return GetRandomUint<uint8_t>(); } in GetRandomUInt8() 80 util::SecretData Random::GetRandomKeyBytes(size_t length) { in GetRandomKeyBytes()
|