ipseckey: Add support for ECDSA and EdDSA public keys

This commit is contained in:
Tobias Brunner
2023-03-30 10:35:09 +02:00
parent e288c507b6
commit 7be55adf05
3 changed files with 74 additions and 8 deletions
@@ -52,6 +52,10 @@ enum ipseckey_algorithm_t {
IPSECKEY_ALGORITHM_DSA = 1,
/** RSA key */
IPSECKEY_ALGORITHM_RSA = 2,
/** ECDSA key (RFC 8005) */
IPSECKEY_ALGORITHM_ECDSA = 3,
/** EdDSA key (RFC 9373) */
IPSECKEY_ALGORITHM_EDDSA = 4,
};
/**