spi 添加秘钥加解密支持
This commit is contained in:
parent
f1484e9f22
commit
df92ad907b
@ -57,6 +57,16 @@ public class EncryptionPluginManagerTest {
|
|||||||
public String algorithmName() {
|
public String algorithmName() {
|
||||||
return "aes";
|
return "aes";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String encryptSecretKey(String secretKey) {
|
||||||
|
return secretKey;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String decryptSecretKey(String secretKey) {
|
||||||
|
return secretKey;
|
||||||
|
}
|
||||||
});
|
});
|
||||||
Assert.assertNotNull(EncryptionPluginManager.instance().findEncryptionService("aes"));
|
Assert.assertNotNull(EncryptionPluginManager.instance().findEncryptionService("aes"));
|
||||||
}
|
}
|
||||||
|
@ -52,6 +52,16 @@ public class EncryptionHandlerTest {
|
|||||||
public String algorithmName() {
|
public String algorithmName() {
|
||||||
return "aes";
|
return "aes";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String encryptSecretKey(String secretKey) {
|
||||||
|
return secretKey;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String decryptSecretKey(String secretKey) {
|
||||||
|
return secretKey;
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user