15 lines
464 B
Java
15 lines
464 B
Java
|
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);
|
||
|
}
|