Class KeyOperationParameters

java.lang.Object
it.pagopa.swclient.mil.azureservices.keyvault.keys.bean.KeyOperationParameters

public class KeyOperationParameters extends Object

The key operations parameters.

Author:
Antonio Tarricone
See Also:
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    private byte[]
    Additional data to authenticate but not encrypt/decrypt when using authenticated crypto algorithms.
    private String
    Algorithm identifier.
    private byte[]
    Cryptographically random, non-repeating initialization vector for symmetric algorithms.
    private byte[]
    The tag to authenticate when performing decryption with an authenticated algorithm.
    private byte[]
    Result.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Default constructor.
  • Method Summary

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • aad

      private byte[] aad

      Additional data to authenticate but not encrypt/decrypt when using authenticated crypto algorithms.

    • alg

      private String alg

      Algorithm identifier.

      See Also:
    • iv

      private byte[] iv

      Cryptographically random, non-repeating initialization vector for symmetric algorithms.

    • tag

      private byte[] tag

      The tag to authenticate when performing decryption with an authenticated algorithm.

    • value

      private byte[] value

      Result.

  • Constructor Details

    • KeyOperationParameters

      public KeyOperationParameters()

      Default constructor.