Fix dependencies
This commit is contained in:
@@ -39,7 +39,7 @@ public class EncryptorFactory {
|
||||
|
||||
TextEncryptor encryptor;
|
||||
if (data.contains("RSA PRIVATE KEY")) {
|
||||
encryptor = new RsaSecretEncryptor(data);
|
||||
encryptor = new RsaSecretEncryptor(data.replaceAll("\\n *", ""));
|
||||
}
|
||||
else if (data.startsWith("ssh-rsa") || data.contains("RSA PUBLIC KEY")) {
|
||||
throw new KeyFormatException();
|
||||
|
||||
Reference in New Issue
Block a user