54 lines
1.9 KiB
Java
54 lines
1.9 KiB
Java
|
package org.bouncycastle.asn1.cms;
|
||
|
|
||
|
import org.bouncycastle.asn1.ASN1EncodableVector;
|
||
|
import org.bouncycastle.asn1.ASN1Object;
|
||
|
import org.bouncycastle.asn1.ASN1Primitive;
|
||
|
import org.bouncycastle.asn1.ASN1Sequence;
|
||
|
import org.bouncycastle.asn1.DERSequence;
|
||
|
import org.bouncycastle.asn1.x509.AlgorithmIdentifier;
|
||
|
|
||
|
/* loaded from: classes6.dex */
|
||
|
public class GenericHybridParameters extends ASN1Object {
|
||
|
private final AlgorithmIdentifier dem;
|
||
|
private final AlgorithmIdentifier kem;
|
||
|
|
||
|
@Override // org.bouncycastle.asn1.ASN1Object, org.bouncycastle.asn1.ASN1Encodable
|
||
|
public ASN1Primitive toASN1Primitive() {
|
||
|
ASN1EncodableVector aSN1EncodableVector = new ASN1EncodableVector();
|
||
|
aSN1EncodableVector.add(this.kem);
|
||
|
aSN1EncodableVector.add(this.dem);
|
||
|
return new DERSequence(aSN1EncodableVector);
|
||
|
}
|
||
|
|
||
|
public AlgorithmIdentifier getKem() {
|
||
|
return this.kem;
|
||
|
}
|
||
|
|
||
|
public AlgorithmIdentifier getDem() {
|
||
|
return this.dem;
|
||
|
}
|
||
|
|
||
|
public static GenericHybridParameters getInstance(Object obj) {
|
||
|
if (obj instanceof GenericHybridParameters) {
|
||
|
return (GenericHybridParameters) obj;
|
||
|
}
|
||
|
if (obj != null) {
|
||
|
return new GenericHybridParameters(ASN1Sequence.getInstance(obj));
|
||
|
}
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
public GenericHybridParameters(AlgorithmIdentifier algorithmIdentifier, AlgorithmIdentifier algorithmIdentifier2) {
|
||
|
this.kem = algorithmIdentifier;
|
||
|
this.dem = algorithmIdentifier2;
|
||
|
}
|
||
|
|
||
|
private GenericHybridParameters(ASN1Sequence aSN1Sequence) {
|
||
|
if (aSN1Sequence.size() != 2) {
|
||
|
throw new IllegalArgumentException("ASN.1 SEQUENCE should be of length 2");
|
||
|
}
|
||
|
this.kem = AlgorithmIdentifier.getInstance(aSN1Sequence.getObjectAt(0));
|
||
|
this.dem = AlgorithmIdentifier.getInstance(aSN1Sequence.getObjectAt(1));
|
||
|
}
|
||
|
}
|