xref: /third_party/openssl/doc/life-cycles/kdf.dot (revision e1051a39)
1e1051a39Sopenharmony_cistrict digraph kdf {
2e1051a39Sopenharmony_ci    bgcolor="transparent";
3e1051a39Sopenharmony_ci
4e1051a39Sopenharmony_ci    begin [label=start, color="#deeaee", style="filled"];
5e1051a39Sopenharmony_ci    newed [label="newed", fontcolor="#c94c4c", style="solid"];
6e1051a39Sopenharmony_ci    deriving [label="deriving", fontcolor="#c94c4c"];
7e1051a39Sopenharmony_ci    end [label="freed", color="#deeaee", style="filled"];
8e1051a39Sopenharmony_ci
9e1051a39Sopenharmony_ci    begin -> newed [label="EVP_KDF_CTX_new"];
10e1051a39Sopenharmony_ci    newed -> deriving [label="EVP_KDF_derive"];
11e1051a39Sopenharmony_ci    deriving -> deriving [label="EVP_KDF_derive", style=dashed];
12e1051a39Sopenharmony_ci    deriving -> end [label="EVP_KDF_CTX_free"];
13e1051a39Sopenharmony_ci    deriving -> newed [label="EVP_KDF_CTX_reset", style=dashed,
14e1051a39Sopenharmony_ci                      color="#034f84", fontcolor="#034f84"];
15e1051a39Sopenharmony_ci}
16e1051a39Sopenharmony_ci
17