org.bouncycastle.asn1.x9

Class KeySpecificInfo

public class KeySpecificInfo extends ASN1Encodable

ASN.1 def for Diffie-Hellman key exchange KeySpecificInfo structure. See RFC 2631, or X9.42, for further details.
Constructor Summary
KeySpecificInfo(DERObjectIdentifier algorithm, ASN1OctetString counter)
KeySpecificInfo(ASN1Sequence seq)
Method Summary
DERObjectIdentifiergetAlgorithm()
ASN1OctetStringgetCounter()
DERObjecttoASN1Object()
Produce an object suitable for an ASN1OutputStream.

Constructor Detail

KeySpecificInfo

public KeySpecificInfo(DERObjectIdentifier algorithm, ASN1OctetString counter)

KeySpecificInfo

public KeySpecificInfo(ASN1Sequence seq)

Method Detail

getAlgorithm

public DERObjectIdentifier getAlgorithm()

getCounter

public ASN1OctetString getCounter()

toASN1Object

public DERObject toASN1Object()
Produce an object suitable for an ASN1OutputStream.
  KeySpecificInfo ::= SEQUENCE {
      algorithm OBJECT IDENTIFIER,
      counter OCTET STRING SIZE (4..4)
  }