File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -12,16 +12,16 @@ namespace sdk {
12
12
13
13
// Enum to represent the "level" of support for Liquid on an HW
14
14
enum class liquid_support_level : uint32_t {
15
- none, // Liquid is not supported
16
- lite, // Liquid is supported, but the unblinding is done on the host
17
- full // Everything is done on the HW
15
+ none = 0 , // Liquid is not supported
16
+ lite = 1 , // Liquid is supported, but the unblinding is done on the host
17
+ full = 2 // Everything is done on the HW
18
18
};
19
19
20
20
// Enum to indicate whether AE-protocol signatures are supported/mandatory
21
21
enum class ae_protocol_support_level : uint32_t {
22
- none, // AE signing protocol is not supported, only vanilla EC sigs
23
- optional, // Both AE and vanilla EC sigs are supported
24
- mandatory // AE protocol mandatory, vanilla EC sigs not supported
22
+ none = 0 , // AE signing protocol is not supported, only vanilla EC sigs
23
+ optional = 1 , // Both AE and vanilla EC sigs are supported
24
+ mandatory= 2 // AE protocol mandatory, vanilla EC sigs not supported
25
25
};
26
26
27
27
//
You can’t perform that action at this time.
0 commit comments