We have a business requirement to submit credential public keys to a third-party library for accreditation. This library only accepts Java PublicKey implementations (and expects them to return DER-encoded byte arrays from getEncoded()).
Internally, java-webauthn-server presumably already has to parse the COSE-encoded public key; would it be possible to expose this in a more "common" standard form, such as DER-encoded bytes?
(I am trying to avoid implementing COSE parsing myself.)
We have a business requirement to submit credential public keys to a third-party library for accreditation. This library only accepts Java
PublicKeyimplementations (and expects them to return DER-encoded byte arrays fromgetEncoded()).Internally,
java-webauthn-serverpresumably already has to parse the COSE-encoded public key; would it be possible to expose this in a more "common" standard form, such as DER-encoded bytes?(I am trying to avoid implementing COSE parsing myself.)