]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
fix Ed448 length values for precomputed ASN.1 prefix blobs
authorMark Andrews <marka@isc.org>
Wed, 29 May 2019 03:22:02 +0000 (13:22 +1000)
committerMark Andrews <marka@isc.org>
Thu, 30 May 2019 08:00:31 +0000 (18:00 +1000)
lib/dns/openssleddsa_link.c

index ab8bd3b1b6c7405b9dbde57941306830f972044f..0a48db5b60a8ebbf6465489bb5278d2cac21d1ef 100644 (file)
@@ -162,8 +162,8 @@ priv_ed25519_from_ossl(EVP_PKEY *pkey, unsigned char *key) {
 #endif
 
 static const unsigned char ed448_pub_prefix[] = {
-       0x30, 0x2a, 0x30, 0x05, 0x06, 0x03, 0x2b, 0x65,
-       0x71, 0x03, 0x21, 0x00
+       0x30, 0x43, 0x30, 0x05, 0x06, 0x03, 0x2b, 0x65,
+       0x71, 0x03, 0x3a, 0x00
 };
 
 static EVP_PKEY *pub_ed448_to_ossl(const unsigned char *key)
@@ -198,8 +198,8 @@ static isc_result_t pub_ed448_from_ossl(EVP_PKEY *pkey,
 }
 
 static const unsigned char ed448_priv_prefix[] = {
-       0x30, 0x2e, 0x02, 0x01, 0x00, 0x30, 0x05, 0x06,
-       0x03, 0x2b, 0x65, 0x71, 0x04, 0x22, 0x04, 0x20
+       0x30, 0x47, 0x02, 0x01, 0x00, 0x30, 0x05, 0x06,
+       0x03, 0x2b, 0x65, 0x71, 0x04, 0x3b, 0x04, 0x39
 };
 
 static EVP_PKEY *priv_ed448_to_ossl(const unsigned char *key)