我在缓冲区中有公钥和私钥的原始字节,并希望使用该信息来加密/解密数据。
我知道我可以使用SecKeyGeneratePair
生成密钥对,然后将其保存到钥匙串,但我不希望这样......
BigInteger modulus = ....
BigInteger publicExponent = ....
BigInteger privateExponent = ....
RSAKeyParameters pubKey = new RSAKeyParameters(false, modulus, publicExponent);
RSAKeyParameters privKey = new RSAKeyParameters(true, modulus, privateExponent);
return new AsymmetricCipherKeyPair(pubKey, privKey);
有什么想法吗?我真的坚持这个问题......