All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.groupbyinc.common.security.AesUtil Maven / Gradle / Ivy

There is a newer version: 198
Show newest version
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 - 2024 Weber Informatics LLC | Privacy Policy