what-the-bank/sources/org/bouncycastle/asn1/cms/KEKRecipientInfo.java

74 lines
2.6 KiB
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package org.bouncycastle.asn1.cms;
import org.bouncycastle.asn1.ASN1EncodableVector;
import org.bouncycastle.asn1.ASN1Integer;
import org.bouncycastle.asn1.ASN1Object;
import org.bouncycastle.asn1.ASN1OctetString;
import org.bouncycastle.asn1.ASN1Primitive;
import org.bouncycastle.asn1.ASN1Sequence;
import org.bouncycastle.asn1.ASN1TaggedObject;
import org.bouncycastle.asn1.DERSequence;
import org.bouncycastle.asn1.x509.AlgorithmIdentifier;
/* loaded from: classes6.dex */
public class KEKRecipientInfo extends ASN1Object {
private ASN1OctetString encryptedKey;
private KEKIdentifier kekid;
private AlgorithmIdentifier keyEncryptionAlgorithm;
private ASN1Integer version;
@Override // org.bouncycastle.asn1.ASN1Object, org.bouncycastle.asn1.ASN1Encodable
public ASN1Primitive toASN1Primitive() {
ASN1EncodableVector aSN1EncodableVector = new ASN1EncodableVector();
aSN1EncodableVector.add(this.version);
aSN1EncodableVector.add(this.kekid);
aSN1EncodableVector.add(this.keyEncryptionAlgorithm);
aSN1EncodableVector.add(this.encryptedKey);
return new DERSequence(aSN1EncodableVector);
}
public ASN1Integer getVersion() {
return this.version;
}
public AlgorithmIdentifier getKeyEncryptionAlgorithm() {
return this.keyEncryptionAlgorithm;
}
public KEKIdentifier getKekid() {
return this.kekid;
}
public ASN1OctetString getEncryptedKey() {
return this.encryptedKey;
}
public static KEKRecipientInfo getInstance(ASN1TaggedObject aSN1TaggedObject, boolean z) {
return getInstance(ASN1Sequence.getInstance(aSN1TaggedObject, z));
}
public static KEKRecipientInfo getInstance(Object obj) {
if (obj instanceof KEKRecipientInfo) {
return (KEKRecipientInfo) obj;
}
if (obj != null) {
return new KEKRecipientInfo(ASN1Sequence.getInstance(obj));
}
return null;
}
public KEKRecipientInfo(KEKIdentifier kEKIdentifier, AlgorithmIdentifier algorithmIdentifier, ASN1OctetString aSN1OctetString) {
this.version = new ASN1Integer(4L);
this.kekid = kEKIdentifier;
this.keyEncryptionAlgorithm = algorithmIdentifier;
this.encryptedKey = aSN1OctetString;
}
public KEKRecipientInfo(ASN1Sequence aSN1Sequence) {
this.version = (ASN1Integer) aSN1Sequence.getObjectAt(0);
this.kekid = KEKIdentifier.getInstance(aSN1Sequence.getObjectAt(1));
this.keyEncryptionAlgorithm = AlgorithmIdentifier.getInstance(aSN1Sequence.getObjectAt(2));
this.encryptedKey = (ASN1OctetString) aSN1Sequence.getObjectAt(3);
}
}