jsonwebtoken
jsonwebtoken copied to clipboard
Is there a way to derive the public key from the private key for ECDSA keys?
The jwt_simple crate allows you to do something like:
let key_pair = ES256KeyPair::from_bytes(some_bytes); let public_key = key_pair.public_key();
Is there a way to grab the public key using this library?
No