Class PBEParameter

java.lang.Object
org.mozilla.jss.pkix.primitive.PBEParameter
All Implemented Interfaces:
ASN1Value

public class PBEParameter extends Object implements ASN1Value
PKCS #5 PBEParameter, and PKCS #12 pkcs-12PbeParams. The only difference between the two is that PKCS #5 dictates that the size of the salt must be 8 bytes, while PKCS #12 leaves the salt length undefined. To work with both standards, this class does not check the length of the salt but rather leaves that to the application.
  • Field Details

    • salt

      private byte[] salt
    • iterations

      private int iterations
    • sequence

      private SEQUENCE sequence
    • TAG

      private static final Tag TAG
    • templateInstance

      private static final PBEParameter.Template templateInstance
  • Constructor Details

    • PBEParameter

      public PBEParameter(byte[] salt, int iterations)
      Creates a PBEParameter from a salt and iteration count. Neither may be null.
    • PBEParameter

      public PBEParameter(OCTET_STRING salt, INTEGER iterations)
      Creates a PBEParameter from a salt and iteration count. Neither may be null.
  • Method Details

    • getSalt

      public byte[] getSalt()
    • getIterations

      public int getIterations()
    • getTag

      public Tag getTag()
      Description copied from interface: ASN1Value
      Returns the base tag for this type, not counting any tags that may be imposed on it by its context.
      Specified by:
      getTag in interface ASN1Value
      Returns:
      Base tag.
    • encode

      public void encode(OutputStream ostream) throws IOException
      Description copied from interface: ASN1Value
      Write this value's DER encoding to an output stream using its own base tag.
      Specified by:
      encode in interface ASN1Value
      Parameters:
      ostream - Output stream.
      Throws:
      IOException - If an error occurred.
    • encode

      public void encode(Tag implicitTag, OutputStream ostream) throws IOException
      Description copied from interface: ASN1Value
      Write this value's DER encoding to an output stream using an implicit tag.
      Specified by:
      encode in interface ASN1Value
      Parameters:
      implicitTag - Implicit tag.
      ostream - Output stream.
      Throws:
      IOException - If an error occurred.
    • getTemplate

      public static PBEParameter.Template getTemplate()