Java 类org.bouncycastle.asn1.bc.BCObjectIdentifiers 实例源码

项目:ipack    文件:JcePKCSPBEOutputEncryptorBuilder.java   
private boolean isPKCS12(ASN1ObjectIdentifier algorithm)
{
    return algorithm.on(PKCSObjectIdentifiers.pkcs_12PbeIds)
        || algorithm.on(BCObjectIdentifiers.bc_pbe_sha1_pkcs12)
        || algorithm.on(BCObjectIdentifiers.bc_pbe_sha256_pkcs12);
}
项目:Aki-SSL    文件:JcePKCSPBEOutputEncryptorBuilder.java   
private boolean isPKCS12(ASN1ObjectIdentifier algorithm)
{
    return algorithm.on(PKCSObjectIdentifiers.pkcs_12PbeIds)
        || algorithm.on(BCObjectIdentifiers.bc_pbe_sha1_pkcs12)
        || algorithm.on(BCObjectIdentifiers.bc_pbe_sha256_pkcs12);
}
项目:irma_future_id    文件:JcePKCSPBEOutputEncryptorBuilder.java   
private boolean isPKCS12(ASN1ObjectIdentifier algorithm)
{
    return algorithm.on(PKCSObjectIdentifiers.pkcs_12PbeIds)
        || algorithm.on(BCObjectIdentifiers.bc_pbe_sha1_pkcs12)
        || algorithm.on(BCObjectIdentifiers.bc_pbe_sha256_pkcs12);
}
项目:bc-java    文件:JcePKCSPBEOutputEncryptorBuilder.java   
private boolean isPKCS12(ASN1ObjectIdentifier algorithm)
{
    return algorithm.on(PKCSObjectIdentifiers.pkcs_12PbeIds)
        || algorithm.on(BCObjectIdentifiers.bc_pbe_sha1_pkcs12)
        || algorithm.on(BCObjectIdentifiers.bc_pbe_sha256_pkcs12);
}