mirror of
https://github.com/openssl/openssl.git
synced 2024-12-15 06:01:37 +08:00
ee96d128d0
Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15616)
18 lines
711 B
Plaintext
18 lines
711 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"];
|
|
}
|
|
|