Reputation: 244
How to encode an ECDSA PublicKey on Java Card so that after I can decode it on another platform (e.g. sending the encoded key in a response APDU and processing it in a standard Java application)? keyPair.getPublic().getEncoded()
on Java would do the trick with PKCS#8 encoding, but as far as I know getEncoded()
is not available on the Java Card platform.
Upvotes: 2
Views: 580
Reputation: 91
You can implement this function like this:
Card side:
Standard java application side:
Upvotes: 4
Reputation: 6116
getEncoded()
method returns the key in its primary encoding format, or null if the key does not support encoding. So you don't need to use it for your goal. you simply can use down-casting to ECPublicKey
:
ECPublicKey pubKey = (ECPublicKey) keyPair.getPublic()
The pubKey
in the above line, is equal with output of getEncoded()
method in Java applications.
Upvotes: 1