com.groupbyinc.common.security.AesContent Maven / Gradle / Ivy
package com.groupbyinc.common.security;
public class AesContent {
private String cipherText;
private String initialValue;
private String messageAuthenticationCode;
public AesContent() {
}
public AesContent(String cipherText, String initialValue, String mac) {
this.cipherText = cipherText;
this.initialValue = initialValue;
this.messageAuthenticationCode = mac;
}
public String getCipherText() {
return cipherText;
}
public String getInitialValue() {
return initialValue;
}
public AesContent setCipherText(String cipherText) {
this.cipherText = cipherText;
return this;
}
public AesContent setInitialValue(String initialValue) {
this.initialValue = initialValue;
return this;
}
public String getMessageAuthenticationCode() {
return messageAuthenticationCode;
}
public AesContent setMessageAuthenticationCode(String messageAuthenticationCode) {
this.messageAuthenticationCode = messageAuthenticationCode;
return this;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy