mirror of
https://github.com/openssl/openssl.git
synced 2024-11-21 01:15:20 +08:00
57cd10dd1e
Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Shane Lontis <shane.lontis@oracle.com> (Merged from https://github.com/openssl/openssl/pull/16641)
18 lines
710 B
Plaintext
18 lines
710 B
Plaintext
strict digraph rand {
|
|
bgcolor="transparent";
|
|
|
|
begin [label=start, color="#deeaee", style="filled"];
|
|
newed [fontcolor="#c94c4c", style="solid"];
|
|
instantiated [fontcolor="#c94c4c"];
|
|
uninstantiated [fontcolor="#c94c4c"];
|
|
end [label="freed", color="#deeaee", style="filled"];
|
|
|
|
begin -> newed [label="EVP_RAND_CTX_new"];
|
|
newed -> instantiated [label="EVP_RAND_instantiate"];
|
|
instantiated -> instantiated [label="EVP_RAND_generate"];
|
|
instantiated -> uninstantiated [label="EVP_RAND_uninstantiate"];
|
|
uninstantiated -> end [label="EVP_RAND_CTX_free"];
|
|
uninstantiated -> instantiated [label="EVP_RAND_instantiate", style=dashed, color="#034f84", fontcolor="#034f84"];
|
|
}
|
|
|