OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Rng
(Results
1 - 3
of
3
) sorted by null
/device/linaro/bootloader/edk2/SecurityPkg/Application/RngTest/
RngTest.c
2
UEFI
RNG
(Random Number Generator) Protocol test application.
21
#include <Protocol/
Rng
.h>
42
EFI_RNG_PROTOCOL *
Rng
;
56
Print (L"UEFI
RNG
Protocol Testing :\n");
60
// Basic UEFI
RNG
Protocol Test
62
Print (L" -- Locate UEFI
RNG
Protocol : ");
63
Status = gBS->LocateProtocol (&gEfiRngProtocolGuid, NULL, (VOID **)&
Rng
);
72
//
Rng
->GetInfo() interface test.
75
Print (L" -- Call
RNG
->GetInfo() interface : ");
77
Status =
Rng
->GetInfo (Rng, &RngAlgListSize, NULL);
[
all
...]
/device/linaro/bootloader/edk2/SecurityPkg/RandomNumberGenerator/RngDxe/
RdRand.h
2
Header for the RDRAND APIs used by
RNG
DXE driver.
30
#include <Protocol/
Rng
.h>
/external/webrtc/webrtc/base/
helpers.cc
39
// Base class for
RNG
implementations.
48
// The OpenSSL
RNG
.
60
// The NSS
RNG
.
83
//
RNG
(which is exposed as a hidden function off of ADVAPI32 so that we
182
// This round about way of creating a global
RNG
is to safe-guard against
190
RandomGenerator&
Rng
() {
209
if (!
Rng
().Init(seed, len)) {
227
if (!
Rng
().Generate(bytes.get(), len)) {
254
if (!
Rng
().Generate(bytes.get(), 31)) {
285
if (!
Rng
().Generate(&id, sizeof(id)))
[
all
...]
Completed in 284 milliseconds