Class AesEncryptor.AesContext

java.lang.Object
nablarch.common.encryption.AesEncryptor.AesContext
All Implemented Interfaces:
Serializable
Enclosing class:
AesEncryptor

public static final class AesEncryptor.AesContext extends Object implements Serializable
AES暗号のコンテキスト情報を保持するクラス。
See Also:
  • Constructor Details

    • AesContext

      public AesContext(Key key, byte[] iv)
      Parameters:
      key - 共通鍵
      iv - IV(イニシャルバリュー)
  • Method Details

    • getKey

      public Key getKey()
      共通鍵を取得する。
      Returns:
      共通鍵
    • getIv

      public byte[] getIv()
      IV(イニシャルバリュー)を取得する。
      Returns:
      IV(イニシャルバリュー)