Class KemBMParameter

java.lang.Object
org.bouncycastle.asn1.ASN1Object
org.bouncycastle.asn1.cmp.KemBMParameter
All Implemented Interfaces:
org.bouncycastle.asn1.ASN1Encodable, org.bouncycastle.util.Encodable

public class KemBMParameter extends org.bouncycastle.asn1.ASN1Object
  KemBMParameter ::= SEQUENCE {
      kdf              AlgorithmIdentifier{KEY-DERIVATION, {...}},
      len              INTEGER (1..MAX),
      mac              AlgorithmIdentifier{MAC-ALGORITHM, {...}}
   }
 
  • Constructor Summary

    Constructors
    Constructor
    Description
    KemBMParameter(org.bouncycastle.asn1.x509.AlgorithmIdentifier kdf, long len, org.bouncycastle.asn1.x509.AlgorithmIdentifier mac)
     
    KemBMParameter(org.bouncycastle.asn1.x509.AlgorithmIdentifier kdf, org.bouncycastle.asn1.ASN1Integer len, org.bouncycastle.asn1.x509.AlgorithmIdentifier mac)
     
  • Method Summary

    Modifier and Type
    Method
    Description
     
    org.bouncycastle.asn1.x509.AlgorithmIdentifier
     
    org.bouncycastle.asn1.ASN1Integer
     
    org.bouncycastle.asn1.x509.AlgorithmIdentifier
     
    org.bouncycastle.asn1.ASN1Primitive
    KemBMParameter ::= SEQUENCE { kdf AlgorithmIdentifier{KEY-DERIVATION, {...}}, len INTEGER (1..MAX), mac AlgorithmIdentifier{MAC-ALGORITHM, {...}} }

    Methods inherited from class org.bouncycastle.asn1.ASN1Object

    encodeTo, encodeTo, equals, getEncoded, getEncoded, hasEncodedTagValue, hashCode

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • KemBMParameter

      public KemBMParameter(org.bouncycastle.asn1.x509.AlgorithmIdentifier kdf, org.bouncycastle.asn1.ASN1Integer len, org.bouncycastle.asn1.x509.AlgorithmIdentifier mac)
    • KemBMParameter

      public KemBMParameter(org.bouncycastle.asn1.x509.AlgorithmIdentifier kdf, long len, org.bouncycastle.asn1.x509.AlgorithmIdentifier mac)
  • Method Details

    • getInstance

      public static KemBMParameter getInstance(Object o)
    • getKdf

      public org.bouncycastle.asn1.x509.AlgorithmIdentifier getKdf()
    • getLen

      public org.bouncycastle.asn1.ASN1Integer getLen()
    • getMac

      public org.bouncycastle.asn1.x509.AlgorithmIdentifier getMac()
    • toASN1Primitive

      public org.bouncycastle.asn1.ASN1Primitive toASN1Primitive()
        KemBMParameter ::= SEQUENCE {
            kdf              AlgorithmIdentifier{KEY-DERIVATION, {...}},
            len              INTEGER (1..MAX),
            mac              AlgorithmIdentifier{MAC-ALGORITHM, {...}}
          }
       
      Specified by:
      toASN1Primitive in interface org.bouncycastle.asn1.ASN1Encodable
      Specified by:
      toASN1Primitive in class org.bouncycastle.asn1.ASN1Object
      Returns:
      a basic ASN.1 object representation.