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

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

There is a newer version: 198
Show newest version
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