Class UserKeyingMaterialSpec

  • All Implemented Interfaces:
    java.security.spec.AlgorithmParameterSpec

    public class UserKeyingMaterialSpec
    extends java.lang.Object
    implements java.security.spec.AlgorithmParameterSpec
    User keying material for the KDF used in key agreement algorithms.
    • Constructor Summary

      Constructors 
      Constructor Description
      UserKeyingMaterialSpec​(byte[] userKeyingMaterial)
      Base constructor.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      byte[] getUserKeyingMaterial()
      Return a copy of the key material in this object.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • UserKeyingMaterialSpec

        public UserKeyingMaterialSpec​(byte[] userKeyingMaterial)
        Base constructor.
        Parameters:
        userKeyingMaterial - the bytes to be mixed in to the key agreement's KDF.
    • Method Detail

      • getUserKeyingMaterial

        public byte[] getUserKeyingMaterial()
        Return a copy of the key material in this object.
        Returns:
        the user keying material.