Files
herolib/lib/crypt/crpgp/crpgp-manual.v
2024-12-25 12:38:51 +01:00

14 lines
178 B
V

module crpgp
// Things that are hard to convert from the c header file automatically
pub enum KeyType_Tag {
rsa
ecdh
ed_dsa
}
struct C.KeyType {
tag KeyType_Tag
rsa u32
}