com.groupbyinc.common.security.AesUtil Maven / Gradle / Ivy
package com.groupbyinc.common.security;
public class AesUtil {
public static String geEncryptSalt(String customerId) {
if (customerId == null) {
return null;
} else {
return customerId + "1Encryption";
}
}
public static String getMessageAuthenticationCodeSalt(String customerId) {
if (customerId == null) {
return null;
} else {
return customerId + "1MessageAuthenticationCode";
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy