54 lines
1.9 KiB
Java
54 lines
1.9 KiB
Java
|
package org.bouncycastle.asn1.tsp;
|
||
|
|
||
|
import org.bouncycastle.asn1.ASN1EncodableVector;
|
||
|
import org.bouncycastle.asn1.ASN1Object;
|
||
|
import org.bouncycastle.asn1.ASN1OctetString;
|
||
|
import org.bouncycastle.asn1.ASN1Primitive;
|
||
|
import org.bouncycastle.asn1.ASN1Sequence;
|
||
|
import org.bouncycastle.asn1.DEROctetString;
|
||
|
import org.bouncycastle.asn1.DERSequence;
|
||
|
import org.bouncycastle.asn1.x509.AlgorithmIdentifier;
|
||
|
import org.bouncycastle.util.Arrays;
|
||
|
|
||
|
/* loaded from: classes6.dex */
|
||
|
public class MessageImprint extends ASN1Object {
|
||
|
AlgorithmIdentifier hashAlgorithm;
|
||
|
byte[] hashedMessage;
|
||
|
|
||
|
@Override // org.bouncycastle.asn1.ASN1Object, org.bouncycastle.asn1.ASN1Encodable
|
||
|
public ASN1Primitive toASN1Primitive() {
|
||
|
ASN1EncodableVector aSN1EncodableVector = new ASN1EncodableVector();
|
||
|
aSN1EncodableVector.add(this.hashAlgorithm);
|
||
|
aSN1EncodableVector.add(new DEROctetString(this.hashedMessage));
|
||
|
return new DERSequence(aSN1EncodableVector);
|
||
|
}
|
||
|
|
||
|
public byte[] getHashedMessage() {
|
||
|
return Arrays.clone(this.hashedMessage);
|
||
|
}
|
||
|
|
||
|
public AlgorithmIdentifier getHashAlgorithm() {
|
||
|
return this.hashAlgorithm;
|
||
|
}
|
||
|
|
||
|
public static MessageImprint getInstance(Object obj) {
|
||
|
if (obj instanceof MessageImprint) {
|
||
|
return (MessageImprint) obj;
|
||
|
}
|
||
|
if (obj != null) {
|
||
|
return new MessageImprint(ASN1Sequence.getInstance(obj));
|
||
|
}
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
public MessageImprint(AlgorithmIdentifier algorithmIdentifier, byte[] bArr) {
|
||
|
this.hashAlgorithm = algorithmIdentifier;
|
||
|
this.hashedMessage = Arrays.clone(bArr);
|
||
|
}
|
||
|
|
||
|
private MessageImprint(ASN1Sequence aSN1Sequence) {
|
||
|
this.hashAlgorithm = AlgorithmIdentifier.getInstance(aSN1Sequence.getObjectAt(0));
|
||
|
this.hashedMessage = ASN1OctetString.getInstance(aSN1Sequence.getObjectAt(1)).getOctets();
|
||
|
}
|
||
|
}
|