1#![cfg_attr(any(feature = "ring", feature = "openssl"), doc = "* [common]:")]
4#![cfg_attr(
5 not(any(feature = "ring", feature = "openssl")),
6 doc = "* common:"
7)]
8#![cfg_attr(
10 all(
11 feature = "unstable-sign",
12 any(feature = "ring", feature = "openssl")
13 ),
14 doc = "* [sign]:"
15)]
16#![cfg_attr(
17 not(all(
18 feature = "unstable-sign",
19 any(feature = "ring", feature = "openssl")
20 )),
21 doc = "* sign:"
22)]
23#![cfg_attr(
25 all(
26 feature = "unstable-validator",
27 any(feature = "ring", feature = "openssl")
28 ),
29 doc = "* [validator]:"
30)]
31#![cfg_attr(
32 not(all(
33 feature = "unstable-validator",
34 any(feature = "ring", feature = "openssl")
35 )),
36 doc = "* validator:"
37)]
38pub mod common;
45pub mod sign;
46pub mod validator;