what-the-bank/sources/org/bouncycastle/jce/interfaces/PKCS12BagAttributeCarrier.java

15 lines
464 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package org.bouncycastle.jce.interfaces;
import java.util.Enumeration;
import org.bouncycastle.asn1.ASN1Encodable;
import org.bouncycastle.asn1.ASN1ObjectIdentifier;
/* loaded from: classes6.dex */
public interface PKCS12BagAttributeCarrier {
ASN1Encodable getBagAttribute(ASN1ObjectIdentifier aSN1ObjectIdentifier);
Enumeration getBagAttributeKeys();
void setBagAttribute(ASN1ObjectIdentifier aSN1ObjectIdentifier, ASN1Encodable aSN1Encodable);
}