Skip to content

Instantly share code, notes, and snippets.

@josemmo
Created March 28, 2018 08:50
Show Gist options
  • Save josemmo/16c7ab38908030734c4b0168e3551295 to your computer and use it in GitHub Desktop.
Save josemmo/16c7ab38908030734c4b0168e3551295 to your computer and use it in GitHub Desktop.
public static KeyPair generateKeyPair() {
KeyPairGenerator kpg = KeyPairGenerator.getInstance("RSA");
kpg.initialize(1024);
return kpg.genKeyPair();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment