Home
last modified time | relevance | path

Searched refs:pubkey (Results 1 – 25 of 192) sorted by relevance

12345678

/netbsd-src/external/bsd/libfido2/dist/tools/
H A Dtest.sh62 verify_cred "--" u2f u2f-cred u2f-pubkey
73 verify_cred "--" wrap wrap-cred wrap-pubkey
84 verify_cred "-h" wrap-hs wrap-hs-cred wrap-hs-pubkey
94 verify_cred "--" rk rk-cred rk-pubkey
104 ! verify_cred "--" rk-hs rk-hs-cred rk-hs-pubkey
117 verify_assert "--" u2f-pubkey u2f-assert
118 verify_assert "-p" u2f-pubkey u2f-assert
123 verify_assert "--" wrap-pubkey wrap-assert
125 verify_assert "--" wrap-pubkey wrap-assert
126 verify_assert "-v" wrap-pubkey wrap-assert
[all …]
/netbsd-src/crypto/external/bsd/netpgp/dist/src/lib/
H A Dssh2pgp.c207 pgp_pubkey_t *pubkey; in pgp_ssh2pubkey() local
277 pubkey = &key->key.seckey.pubkey; in pgp_ssh2pubkey()
278 pubkey->version = PGP_V4; in pgp_ssh2pubkey()
279 pubkey->birthtime = 0; in pgp_ssh2pubkey()
282 switch (pubkey->alg = findstr(pkatypes, buf)) { in pgp_ssh2pubkey()
285 pubkey->key.rsa.e = getbignum(&bg, buf, "RSA E"); in pgp_ssh2pubkey()
287 pubkey->key.rsa.n = getbignum(&bg, buf, "RSA N"); in pgp_ssh2pubkey()
291 pubkey->key.dsa.p = getbignum(&bg, buf, "DSA P"); in pgp_ssh2pubkey()
293 pubkey->key.dsa.q = getbignum(&bg, buf, "DSA Q"); in pgp_ssh2pubkey()
295 pubkey->key.dsa.g = getbignum(&bg, buf, "DSA G"); in pgp_ssh2pubkey()
[all …]
H A Dpacket-print.c310 numkeybits(const pgp_pubkey_t *pubkey) in numkeybits() argument
312 switch(pubkey->alg) { in numkeybits()
316 return BN_num_bytes(pubkey->key.rsa.n) * 8; in numkeybits()
318 switch(BN_num_bytes(pubkey->key.dsa.q)) { in numkeybits()
329 return ecdsa_numbits(&pubkey->key.ecdsa); in numkeybits()
331 return BN_num_bytes(pubkey->key.elgamal.y) * 8; in numkeybits()
401 const pgp_pubkey_t *pubkey, const int psigs) in pgp_sprint_keydata() argument
421 if (pubkey->duration > 0) { in pgp_sprint_keydata()
423 (pubkey->birthtime + pubkey->duration < now) ? in pgp_sprint_keydata()
426 pubkey->birthtime + pubkey->duration); in pgp_sprint_keydata()
[all …]
H A Dkeyring.c140 pgp_pubkey_free(&keydata->key.pubkey); in pgp_keydata_free()
163 &keydata->key.pubkey : in pgp_get_pubkey()
164 &keydata->key.seckey.pubkey; in pgp_get_pubkey()
406 switch(key->key.pubkey.alg) { in pgp_is_key_supported()
537 pgp_sig_start_key_sig(sig, &key->key.seckey.pubkey, userid, PGP_CERT_POSITIVE); in pgp_add_selfsigned_userid()
544 pgp_write_sig(sigoutput, sig, &key->key.seckey.pubkey, &key->key.seckey); in pgp_add_selfsigned_userid()
633 keyring->keys[keyring->keyc - 1].key.pubkey.duration = pkt->u.ss_time; in cb_keyring_read()
914 const uint8_t *keyid, unsigned *from, pgp_pubkey_t **pubkey) in pgp_getkeybyid() argument
927 if (pubkey) { in pgp_getkeybyid()
928 *pubkey = &keyring->keys[*from].key.pubkey; in pgp_getkeybyid()
[all …]
H A Dcreate.c192 switch (key->pubkey.alg) { in seckey_length()
194 return (unsigned)(mpi_length(key->key.dsa.x) + pubkey_length(&key->pubkey)); in seckey_length()
199 return (unsigned)(len + pubkey_length(&key->pubkey)); in seckey_length()
296 if (!write_pubkey_body(&key->pubkey, output)) { in write_seckey_body()
448 switch (key->pubkey.alg) { in write_seckey_body()
518 if (!write_struct_pubkey(output, &key->key.pubkey)) { in pgp_write_xfer_pubkey()
678 pgp_fast_create_rsa_pubkey(&key->pubkey, t, n, e); in pgp_fast_create_rsa_seckey()
708 if (key->pubkey.version != 4) { in pgp_write_struct_seckey()
882 encode_m_buf(const uint8_t *M, size_t mLen, const pgp_pubkey_t * pubkey, in encode_m_buf() argument
889 switch (pubkey->alg) { in encode_m_buf()
[all …]
H A Dopenssl_crypto.c119 makeRSA(const pgp_rsa_pubkey_t *pubkey, const pgp_rsa_seckey_t *seckey) in makeRSA() argument
125 n = BN_dup(pubkey->n); in makeRSA()
126 e = BN_dup(pubkey->e); in makeRSA()
327 RSA *test = makeRSA(&seckey->pubkey.key.rsa, &seckey->key.rsa); in test_seckey()
731 const pgp_rsa_pubkey_t *pubkey) in pgp_rsa_public_decrypt() argument
733 RSA *orsa = makeRSA(pubkey, NULL); in pgp_rsa_public_decrypt()
758 const pgp_rsa_pubkey_t *pubkey) in pgp_rsa_private_encrypt() argument
760 RSA *orsa = makeRSA(pubkey, seckey); in pgp_rsa_private_encrypt()
795 const pgp_rsa_pubkey_t *pubkey) in pgp_rsa_private_decrypt() argument
797 RSA *keypair = makeRSA(pubkey, seckey); in pgp_rsa_private_decrypt()
[all …]
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/ec/
H A Decx_backend.c32 ossl_x25519_public_from_private(key->pubkey, key->privkey); in ossl_ecx_public_from_private()
35 if (!ossl_ed25519_public_from_private(key->libctx, key->pubkey, in ossl_ecx_public_from_private()
42 ossl_x448_public_from_private(key->pubkey, key->privkey); in ossl_ecx_public_from_private()
45 if (!ossl_ed448_public_from_private(key->libctx, key->pubkey, in ossl_ecx_public_from_private()
60 unsigned char *pubkey; in ossl_ecx_key_fromdata() local
91 pubkey = ecx->pubkey; in ossl_ecx_key_fromdata()
94 (void **)&pubkey, in ossl_ecx_key_fromdata()
95 sizeof(ecx->pubkey), &pubkeylen)) in ossl_ecx_key_fromdata()
138 memcpy(ret->pubkey, key->pubkey, sizeof(ret->pubkey)); in ossl_ecx_key_dup()
164 unsigned char *privkey, *pubkey; in ossl_ecx_key_op() local
[all …]
H A Decx_meth.c41 penc = OPENSSL_memdup(ecxkey->pubkey, KEYLEN(pkey)); in ecx_pub_encode()
56 static int ecx_pub_decode(EVP_PKEY *pkey, const X509_PUBKEY *pubkey) in ecx_pub_decode() argument
64 if (!X509_PUBKEY_get0_param(NULL, &p, &pklen, &palg, pubkey)) in ecx_pub_decode()
83 return CRYPTO_memcmp(akey->pubkey, bkey->pubkey, KEYLEN(a)) == 0; in ecx_pub_cmp()
199 if (ASN1_buf_print(bp, ecxkey->pubkey, KEYLEN(pkey), in ecx_key_print()
235 *ppt = OPENSSL_memdup(pkey->pkey.ecx->pubkey, KEYLEN(pkey)); in ecx_ctrl()
334 memcpy(pub, key->pubkey, *len); in ecx_get_pub_key()
363 key->pubkey, key->keylen)) in ecx_pkey_export_to()
727 const unsigned char **pubkey) in validate_ecx_derive() argument
746 *pubkey = peerkey->pubkey; in validate_ecx_derive()
[all …]
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/x509/
H A Dx_pubkey.c87 X509_PUBKEY *pubkey; in x509_pubkey_ex_free() local
89 if (pval != NULL && (pubkey = (X509_PUBKEY *)*pval) != NULL) { in x509_pubkey_ex_free()
90 X509_ALGOR_free(pubkey->algor); in x509_pubkey_ex_free()
91 ASN1_BIT_STRING_free(pubkey->public_key); in x509_pubkey_ex_free()
92 EVP_PKEY_free(pubkey->pkey); in x509_pubkey_ex_free()
93 OPENSSL_free(pubkey->propq); in x509_pubkey_ex_free()
94 OPENSSL_free(pubkey); in x509_pubkey_ex_free()
101 X509_PUBKEY *pubkey = (X509_PUBKEY *)*pval; in x509_pubkey_ex_populate() local
103 return (pubkey->algor != NULL in x509_pubkey_ex_populate()
104 || (pubkey->algor = X509_ALGOR_new()) != NULL) in x509_pubkey_ex_populate()
[all …]
/netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/ec/
H A Decx_meth.c50 unsigned char *privkey, *pubkey; in ecx_key_op() local
75 pubkey = key->pubkey; in ecx_key_op()
78 memcpy(pubkey, p, plen); in ecx_key_op()
104 X25519_public_from_private(pubkey, privkey); in ecx_key_op()
107 ED25519_public_from_private(pubkey, privkey); in ecx_key_op()
110 X448_public_from_private(pubkey, privkey); in ecx_key_op()
113 ED448_public_from_private(pubkey, privkey); in ecx_key_op()
135 penc = OPENSSL_memdup(ecxkey->pubkey, KEYLEN(pkey)); in ecx_pub_encode()
150 static int ecx_pub_decode(EVP_PKEY *pkey, X509_PUBKEY *pubkey) in ecx_pub_decode() argument
156 if (!X509_PUBKEY_get0_param(NULL, &p, &pklen, &palg, pubkey)) in ecx_pub_decode()
[all …]
/netbsd-src/crypto/external/bsd/netpgp/dist/src/libverify/
H A Dlibverify.c401 fmt_key_mpis(pgpv_pubkey_t *pubkey, uint8_t *buf, size_t size) in fmt_key_mpis() argument
406 buf[cc++] = pubkey->version; in fmt_key_mpis()
407 cc += fmt_32(&buf[cc], (uint32_t)pubkey->birth); in fmt_key_mpis()
408 buf[cc++] = pubkey->keyalg; in fmt_key_mpis()
409 switch(pubkey->keyalg) { in fmt_key_mpis()
413 cc += fmt_binary_mpi(&pubkey->bn[RSA_N], &buf[cc], size - cc); in fmt_key_mpis()
414 cc += fmt_binary_mpi(&pubkey->bn[RSA_E], &buf[cc], size - cc); in fmt_key_mpis()
417 cc += fmt_binary_mpi(&pubkey->bn[DSA_P], &buf[cc], size - cc); in fmt_key_mpis()
418 cc += fmt_binary_mpi(&pubkey->bn[DSA_Q], &buf[cc], size - cc); in fmt_key_mpis()
419 cc += fmt_binary_mpi(&pubkey->bn[DSA_G], &buf[cc], size - cc); in fmt_key_mpis()
[all …]
/netbsd-src/crypto/external/bsd/netpgp/dist/src/netpgpverify/
H A Dlibverify.c220 pgpv_pubkey_t pubkey; member
768 fmt_key_mpis(pgpv_pubkey_t *pubkey, uint8_t *buf, size_t size) in fmt_key_mpis() argument
773 buf[cc++] = pubkey->version; in fmt_key_mpis()
774 cc += fmt_32(&buf[cc], (uint32_t)pubkey->birth); /* XXX - do this portably! */ in fmt_key_mpis()
775 buf[cc++] = pubkey->keyalg; /* XXX - sign, or encrypt and sign? */ in fmt_key_mpis()
776 switch(pubkey->keyalg) { in fmt_key_mpis()
780 cc += fmt_binary_mpi(&pubkey->bn[RSA_N], &buf[cc], size - cc); in fmt_key_mpis()
781 cc += fmt_binary_mpi(&pubkey->bn[RSA_E], &buf[cc], size - cc); in fmt_key_mpis()
784 cc += fmt_binary_mpi(&pubkey->bn[DSA_P], &buf[cc], size - cc); in fmt_key_mpis()
785 cc += fmt_binary_mpi(&pubkey->bn[DSA_Q], &buf[cc], size - cc); in fmt_key_mpis()
[all …]
/netbsd-src/external/bsd/unbound/dist/validator/
H A Dval_secalgo.c1235 nss_setup_key_digest(int algo, SECKEYPublicKey** pubkey, HASH_HashType* htype, in nss_setup_key_digest() argument
1264 *pubkey = nss_buf2dsa(key, keylen); in nss_setup_key_digest()
1265 if(!*pubkey) { in nss_setup_key_digest()
1283 *pubkey = nss_buf2rsa(key, keylen); in nss_setup_key_digest()
1284 if(!*pubkey) { in nss_setup_key_digest()
1320 *pubkey = nss_buf2rsa(key, keylen); in nss_setup_key_digest()
1321 if(!*pubkey) { in nss_setup_key_digest()
1332 *pubkey = nss_buf2ecdsa(key, keylen, in nss_setup_key_digest()
1334 if(!*pubkey) { in nss_setup_key_digest()
1342 *pubkey = nss_buf2ecdsa(key, keylen, in nss_setup_key_digest()
[all …]
/netbsd-src/external/bsd/libfido2/dist/regress/
H A Dcred.c291 const unsigned char pubkey[64] = { variable
1531 assert(fido_cred_pubkey_len(c) == sizeof(pubkey)); in valid_cred()
1532 assert(memcmp(fido_cred_pubkey_ptr(c), pubkey, sizeof(pubkey)) == 0); in valid_cred()
1555 assert(fido_cred_pubkey_len(c) == sizeof(pubkey)); in no_cdh()
1556 assert(memcmp(fido_cred_pubkey_ptr(c), pubkey, sizeof(pubkey)) == 0); in no_cdh()
1579 assert(fido_cred_pubkey_len(c) == sizeof(pubkey)); in no_rp_id()
1580 assert(memcmp(fido_cred_pubkey_ptr(c), pubkey, sizeof(pubkey)) == 0); in no_rp_id()
1604 assert(fido_cred_pubkey_len(c) == sizeof(pubkey)); in no_rp_name()
1605 assert(memcmp(fido_cred_pubkey_ptr(c), pubkey, sizeof(pubkey)) == 0); in no_rp_name()
1657 assert(fido_cred_pubkey_len(c) == sizeof(pubkey)); in no_x509()
[all …]
/netbsd-src/external/bsd/wpa/dist/src/crypto/
H A Dcrypto_internal-modexp.c17 u8 *pubkey) in crypto_dh_init() argument
30 pubkey, &pubkey_len) < 0) in crypto_dh_init()
34 os_memmove(pubkey + pad, pubkey, pubkey_len); in crypto_dh_init()
35 os_memset(pubkey, 0, pad); in crypto_dh_init()
45 const u8 *pubkey, size_t pubkey_len, in crypto_dh_derive_secret() argument
53 os_memcmp(pubkey, prime, prime_len) >= 0)) in crypto_dh_derive_secret()
57 if (!pub || bignum_set_unsigned_bin(pub, pubkey, pubkey_len) < 0 || in crypto_dh_derive_secret()
81 res = crypto_mod_exp(pubkey, pubkey_len, privkey, privkey_len, in crypto_dh_derive_secret()
/netbsd-src/external/mit/libuv/dist/
H A DMAINTAINERS.md6 - GPG key: D77B 1E34 243F BAF0 5F8E 9CC3 4F55 C8C8 46AB 89B9 (pubkey-bnoordhuis)
9 - GPG key: 94AE 3667 5C46 4D64 BAFA 68DD 7434 390B DBE9 B9C5 (pubkey-cjihrig)
10 - GPG key: 5735 3E0D BDAA A7E8 39B6 6A1A FF47 D5E4 AD8B 4FDC (pubkey-cjihrig-kb)
12 - GPG key: AF2E EA41 EC34 47BF DD86 FED9 D706 3CCE 19B7 E890 (pubkey-indutny)
14 - GPG key: AEAD 0A4B 6867 6775 1A0E 4AEF 34A2 5FB1 2824 6514 (pubkey-vtjnash)
18 - GPG Key: 5804 F999 8A92 2AFB A398 47A0 7183 5090 6134 887F (pubkey-erw7)
20 - GPG key: C82F A3AE 1CBE DC6B E46B 9360 C43C EC45 C17A B93C (pubkey-richardlau)
22 - GPG key: 612F 0EAD 9401 6223 79DF 4402 F28C 3C8D A33C 03BE (pubkey-santigimeno)
24 - GPG key: FDF5 1936 4458 319F A823 3DC9 410E 5553 AE9B C059 (pubkey-saghul)
50 $ git tag -s pubkey-saghul abcd1234
[all …]
/netbsd-src/crypto/external/bsd/openssl/dist/providers/implementations/keymgmt/
H A Decx_kmgmt.c158 const unsigned char *pa = key1->haspubkey ? key1->pubkey : NULL; in ecx_match()
159 const unsigned char *pb = key2->haspubkey ? key2->pubkey : NULL; in ecx_match()
217 key->pubkey, key->keylen)) in key_to_params()
299 if (!OSSL_PARAM_set_octet_string(p, ecx->pubkey, ecx->keylen)) in ecx_get_params()
405 void *buf = ecxkey->pubkey; in ecx_set_params()
408 || !OSSL_PARAM_get_octet_string(p, &buf, sizeof(ecxkey->pubkey), in ecx_set_params()
607 ossl_x25519_public_from_private(key->pubkey, privkey); in ecx_gen()
612 ossl_x448_public_from_private(key->pubkey, privkey); in ecx_gen()
615 if (!ossl_ed25519_public_from_private(gctx->libctx, key->pubkey, privkey, in ecx_gen()
620 if (!ossl_ed448_public_from_private(gctx->libctx, key->pubkey, privkey, in ecx_gen()
[all …]
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/cms/
H A Dcms_dh.c20 X509_ALGOR *alg, ASN1_BIT_STRING *pubkey) in dh_cms_set_peerkey() argument
45 plen = ASN1_STRING_length(pubkey); in dh_cms_set_peerkey()
46 p = ASN1_STRING_get0_data(pubkey); in dh_cms_set_peerkey()
170 ASN1_BIT_STRING *pubkey; in dh_cms_decrypt() local
172 if (!CMS_RecipientInfo_kari_get0_orig_id(ri, &alg, &pubkey, in dh_cms_decrypt()
175 if (alg == NULL || pubkey == NULL) in dh_cms_decrypt()
177 if (!dh_cms_set_peerkey(pctx, alg, pubkey)) { in dh_cms_decrypt()
198 ASN1_BIT_STRING *pubkey; in dh_cms_encrypt() local
213 if (!CMS_RecipientInfo_kari_get0_orig_id(ri, &talg, &pubkey, in dh_cms_encrypt()
236 ASN1_STRING_set0(pubkey, penc, penclen); in dh_cms_encrypt()
[all …]
H A Dcms_ec.c73 X509_ALGOR *alg, ASN1_BIT_STRING *pubkey) in ecdh_cms_set_peerkey() argument
108 plen = ASN1_STRING_length(pubkey); in ecdh_cms_set_peerkey()
109 p = ASN1_STRING_get0_data(pubkey); in ecdh_cms_set_peerkey()
229 ASN1_BIT_STRING *pubkey; in ecdh_cms_decrypt() local
231 if (!CMS_RecipientInfo_kari_get0_orig_id(ri, &alg, &pubkey, in ecdh_cms_decrypt()
234 if (alg == NULL || pubkey == NULL) in ecdh_cms_decrypt()
236 if (!ecdh_cms_set_peerkey(pctx, alg, pubkey)) { in ecdh_cms_decrypt()
257 ASN1_BIT_STRING *pubkey; in ecdh_cms_encrypt() local
271 if (!CMS_RecipientInfo_kari_get0_orig_id(ri, &talg, &pubkey, in ecdh_cms_encrypt()
283 ASN1_STRING_set0(pubkey, penc, (int)enckeylen); in ecdh_cms_encrypt()
[all …]
/netbsd-src/crypto/external/bsd/openssl/dist/test/
H A Dtls-provider.c45 unsigned char pubkey[XOR_KEY_SIZE]; member
286 secret[i] = pxorctx->key->privkey[i] ^ pxorctx->peerkey->pubkey[i]; in xor_derive()
372 memcpy(ct, ourkey->pubkey, XOR_KEY_SIZE); in xor_encapsulate()
420 memcpy(peerkey->pubkey, ct, XOR_KEY_SIZE); in xor_decapsulate()
497 memcpy(tokey->pubkey, fromkey->pubkey, XOR_KEY_SIZE); in xor_dup()
538 memcpy(p->data, key->pubkey, XOR_KEY_SIZE); in xor_get_params()
566 memcpy(key->pubkey, p->data, XOR_KEY_SIZE); in xor_set_params()
654 key->pubkey[i] = key->privkey[i] ^ private_constant[i]; in xor_gen()
669 unsigned char pubkey[XOR_KEY_SIZE]; in xor_import() local
670 void *pprivkey = privkey, *ppubkey = pubkey; in xor_import()
[all …]
/netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/x509v3/
H A Dv3_skey.c59 X509_PUBKEY *pubkey; in s2i_skey_id() local
82 pubkey = ctx->subject_req->req_info.pubkey; in s2i_skey_id()
84 pubkey = ctx->subject_cert->cert_info.key; in s2i_skey_id()
86 if (pubkey == NULL) { in s2i_skey_id()
91 X509_PUBKEY_get0_param(NULL, &pk, &pklen, NULL, pubkey); in s2i_skey_id()
/netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/ec/curve448/
H A Deddsa.c89 uint8_t pubkey[EDDSA_448_PUBLIC_BYTES], in c448_ed448_derive_public_key()
120 curve448_point_mul_by_ratio_and_encode_like_eddsa(pubkey, p); in c448_ed448_derive_public_key()
133 const uint8_t pubkey[EDDSA_448_PUBLIC_BYTES], in c448_ed448_sign()
207 || !EVP_DigestUpdate(hashctx, pubkey, EDDSA_448_PUBLIC_BYTES) in c448_ed448_sign()
238 const uint8_t pubkey[EDDSA_448_PUBLIC_BYTES], in c448_ed448_sign_prehash()
242 return c448_ed448_sign(signature, privkey, pubkey, hash, 64, 1, context, in c448_ed448_sign_prehash()
248 const uint8_t pubkey[EDDSA_448_PUBLIC_BYTES], in c448_ed448_verify()
283 curve448_point_decode_like_eddsa_and_mul_by_ratio(pk_point, pubkey); in c448_ed448_verify()
302 || !EVP_DigestUpdate(hashctx, pubkey, EDDSA_448_PUBLIC_BYTES) in c448_ed448_verify()
330 const uint8_t pubkey[EDDSA_448_PUBLIC_BYTES], in c448_ed448_verify_prehash()
[all …]
H A Ded448.h41 uint8_t pubkey [EDDSA_448_PUBLIC_BYTES],
64 const uint8_t pubkey[EDDSA_448_PUBLIC_BYTES],
88 const uint8_t pubkey[EDDSA_448_PUBLIC_BYTES],
114 pubkey[EDDSA_448_PUBLIC_BYTES],
138 const uint8_t pubkey[EDDSA_448_PUBLIC_BYTES],
/netbsd-src/crypto/external/bsd/openssl/dist/test/recipes/
H A D20-test_dgst.t25 my $pubkey = shift;
43 ok(run(app(['openssl', 'dgst', '-verify', $pubkey,
48 ok(!run(app(['openssl', 'dgst', '-verify', $pubkey,
57 my $pubkey = shift;
70 ok(run(app(['openssl', 'sha512', '-verify', $pubkey,
80 ok(run(app(['openssl', 'dgst', '-sha512', '-verify', $pubkey,
85 ok(!run(app(['openssl', 'dgst', '-sha512', '-verify', $pubkey,
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/ec/curve448/
H A Ded448.h43 uint8_t pubkey [EDDSA_448_PUBLIC_BYTES],
68 const uint8_t pubkey[EDDSA_448_PUBLIC_BYTES],
94 const uint8_t pubkey[EDDSA_448_PUBLIC_BYTES],
123 pubkey[EDDSA_448_PUBLIC_BYTES],
150 const uint8_t pubkey[EDDSA_448_PUBLIC_BYTES],

12345678