I have a key pair already, public and private. How do I actually use the java.security.Signature
to do verification of a string I signed with one of the keys?
Edit:
I have both the keys as Strings. The verify method, it is actually
verify(byte[] signature)
The javadoc says:
verify(byte[] signature)
Indicates whether the given signature can be verified using the public key or a certificate of the signer.
How would I make that signature recognize which public/private key to use for that verifying, before I call the verify method? In other words, how do I turn my string keys into key objects that would get accepted by signature?
verify
in that class? If so perhaps you have a more specific question. – President James K. Polk