01: package org.bouncycastle.asn1.pkcs;
02:
03: import org.bouncycastle.asn1.ASN1Encodable;
04: import org.bouncycastle.asn1.ASN1Sequence;
05: import org.bouncycastle.asn1.DERObjectIdentifier;
06: import org.bouncycastle.asn1.x509.AlgorithmIdentifier;
07:
08: public class KeyDerivationFunc extends AlgorithmIdentifier {
09: KeyDerivationFunc(ASN1Sequence seq) {
10: super (seq);
11: }
12:
13: KeyDerivationFunc(DERObjectIdentifier id, ASN1Encodable params) {
14: super(id, params);
15: }
16: }
|