REM:
1. 修改加密类型AES256为AES128
This commit is contained in:
HuangXin 2020-09-16 15:28:26 +08:00
parent 63debfca1d
commit f7085b6520
3 changed files with 4 additions and 4 deletions

View File

@ -17,7 +17,7 @@ public enum ProtoCryptoType {
/**
* The Crypto aes 256.
*/
CRYPTO_AES256(2, "AES256加密"),
CRYPTO_AES128(2, "AES128加密"),
/**
* The Crypto des.
*/

View File

@ -70,7 +70,7 @@ public class ProtocolSecurityServiceImpl implements ProtocolSecurityService {
// 加密类型为base64直接返回处理结果
if (proReq.getCryptoType() == ProtoCryptoType.CRYPTO_BASE64.getCode()) {
decryptContent = base64Decode;
} else if (proReq.getCryptoType() == ProtoCryptoType.CRYPTO_AES256.getCode()) {
} else if (proReq.getCryptoType() == ProtoCryptoType.CRYPTO_AES128.getCode()) {
try {
decryptContent = CryptoHelper.aes128Decryption(base64Decode, SecurityConfigValue.AES_KEY);
} catch (Exception e) {
@ -122,7 +122,7 @@ public class ProtocolSecurityServiceImpl implements ProtocolSecurityService {
String cipherText;
if (cryptoType == ProtoCryptoType.CRYPTO_BASE64.getCode()) {
cipherText = CryptoHelper.base64Encryption(plainText.getBytes(StandardCharsets.UTF_8));
} else if (cryptoType == ProtoCryptoType.CRYPTO_AES256.getCode()) {
} else if (cryptoType == ProtoCryptoType.CRYPTO_AES128.getCode()) {
try {
byte[] encode = CryptoHelper.aes128Encryption(plainText.getBytes(StandardCharsets.UTF_8),
SecurityConfigValue.AES_KEY);

View File

@ -57,7 +57,7 @@ public class CodeCoverage {
.rspCode(ErrorCode.ERR_PARAMEXCEPTION)
.autoLogin(true)
.verifyCallback((VerifyProtoRespCallback<GetTaskRsp>) CodeCoverage::verifyJsonExceptionResp)
.prepareCallback(c -> SecurityConfigValue.SECURITY_PROTOCOL_TYPE = ProtoCryptoType.CRYPTO_AES256.getCode())
.prepareCallback(c -> SecurityConfigValue.SECURITY_PROTOCOL_TYPE = ProtoCryptoType.CRYPTO_AES128.getCode())
.build(),
};