Does Java under android have the ability to store encryption keys in a secure way, for example password protected?
Previously generated like this:
final KeyPairGenerator keyGen = KeyPairGenerator.getInstance("RSA"); keyGen.initialize(4096, new SecureRandom()); final KeyPair key = keyGen.generateKeyPair();