Welcome
Java cryptography made easy
Last updated
Was this helpful?
Java cryptography made easy
Last updated
Was this helpful?
Was this helpful?
KeyStore keystore = keystore("classpath:keystore.p12", "password");
PrivateKey privateKey = privateKey(keystore, "alice", "password");
EncodingSigner signer = signer(privateKey, "SHA512withRSA", BASE64);
String signature = signer.sign("Hi Bob!");