当前位置: 首页>>代码示例>>Java>>正文


Java ObjectDigestInfo类代码示例

本文整理汇总了Java中org.bouncycastle.asn1.x509.ObjectDigestInfo的典型用法代码示例。如果您正苦于以下问题:Java ObjectDigestInfo类的具体用法?Java ObjectDigestInfo怎么用?Java ObjectDigestInfo使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


ObjectDigestInfo类属于org.bouncycastle.asn1.x509包,在下文中一共展示了ObjectDigestInfo类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: match

import org.bouncycastle.asn1.x509.ObjectDigestInfo; //导入依赖的package包/类
public boolean match(Object obj)
{
    if (!(obj instanceof X509CertificateHolder))
    {
        return false;
    }

    X509CertificateHolder x509Cert = (X509CertificateHolder)obj;

    if (holder.getBaseCertificateID() != null)
    {
        return holder.getBaseCertificateID().getSerial().getValue().equals(x509Cert.getSerialNumber())
            && matchesDN(x509Cert.getIssuer(), holder.getBaseCertificateID().getIssuer());
    }

    if (holder.getEntityName() != null)
    {
        if (matchesDN(x509Cert.getSubject(),
            holder.getEntityName()))
        {
            return true;
        }
    }

    if (holder.getObjectDigestInfo() != null)
    {
        try
        {
            DigestCalculator digCalc = digestCalculatorProvider.get(holder.getObjectDigestInfo().getDigestAlgorithm());
            OutputStream     digOut = digCalc.getOutputStream();

            switch (getDigestedObjectType())
            {
            case ObjectDigestInfo.publicKey:
                // TODO: DSA Dss-parms
                digOut.write(x509Cert.getSubjectPublicKeyInfo().getEncoded());
                break;
            case ObjectDigestInfo.publicKeyCert:
                digOut.write(x509Cert.getEncoded());
                break;
            }

            digOut.close();

            if (!Arrays.areEqual(digCalc.getDigest(), getObjectDigest()))
            {
                return false;
            }
        }
        catch (Exception e)
        {
            return false;
        }
    }

    return false;
}
 
开发者ID:Appdome,项目名称:ipack,代码行数:58,代码来源:AttributeCertificateHolder.java

示例2: AttributeCertificateHolder

import org.bouncycastle.asn1.x509.ObjectDigestInfo; //导入依赖的package包/类
/**
 * Constructs a holder for v2 attribute certificates with a hash value for
 * some type of object.
 * <p>
 * <code>digestedObjectType</code> can be one of the following:
 * <ul>
 * <li>0 - publicKey - A hash of the public key of the holder must be
 * passed.
 * <li>1 - publicKeyCert - A hash of the public key certificate of the
 * holder must be passed.
 * <li>2 - otherObjectDigest - A hash of some other object type must be
 * passed. <code>otherObjectTypeID</code> must not be empty.
 * </ul>
 * <p>
 * This cannot be used if a v1 attribute certificate is used.
 * 
 * @param digestedObjectType The digest object type.
 * @param digestAlgorithm The algorithm identifier for the hash.
 * @param otherObjectTypeID The object type ID if
 *            <code>digestedObjectType</code> is
 *            <code>otherObjectDigest</code>.
 * @param objectDigest The hash value.
 */
public AttributeCertificateHolder(int digestedObjectType,
    String digestAlgorithm, String otherObjectTypeID, byte[] objectDigest)
{
    holder = new Holder(new ObjectDigestInfo(digestedObjectType,
        new ASN1ObjectIdentifier(otherObjectTypeID), new AlgorithmIdentifier(digestAlgorithm), Arrays
            .clone(objectDigest)));
}
 
开发者ID:Appdome,项目名称:ipack,代码行数:31,代码来源:AttributeCertificateHolder.java

示例3: AttributeCertificateHolder

import org.bouncycastle.asn1.x509.ObjectDigestInfo; //导入依赖的package包/类
/**
 * Constructs a holder for v2 attribute certificates with a hash value for
 * some type of object.
 * <p>
 * <code>digestedObjectType</code> can be one of the following:
 * <ul>
 * <li>0 - publicKey - A hash of the public key of the holder must be
 * passed.
 * <li>1 - publicKeyCert - A hash of the public key certificate of the
 * holder must be passed.
 * <li>2 - otherObjectDigest - A hash of some other object type must be
 * passed. <code>otherObjectTypeID</code> must not be empty.
 * </ul>
 * <p>
 * This cannot be used if a v1 attribute certificate is used.
 * 
 * @param digestedObjectType The digest object type.
 * @param digestAlgorithm The algorithm identifier for the hash.
 * @param otherObjectTypeID The object type ID if
 *            <code>digestedObjectType</code> is
 *            <code>otherObjectDigest</code>.
 * @param objectDigest The hash value.
 */
public AttributeCertificateHolder(int digestedObjectType,
    ASN1ObjectIdentifier digestAlgorithm, ASN1ObjectIdentifier otherObjectTypeID, byte[] objectDigest)
{
    holder = new Holder(new ObjectDigestInfo(digestedObjectType,
        otherObjectTypeID, new AlgorithmIdentifier(digestAlgorithm), Arrays
            .clone(objectDigest)));
}
 
开发者ID:Appdome,项目名称:ipack,代码行数:31,代码来源:AttributeCertificateHolder.java

示例4: AttributeCertificateHolder

import org.bouncycastle.asn1.x509.ObjectDigestInfo; //导入依赖的package包/类
/**
 * Constructs a holder for v2 attribute certificates with a hash value for
 * some type of object.
 * <p>
 * <code>digestedObjectType</code> can be one of the following:
 * <ul>
 * <li>0 - publicKey - A hash of the public key of the holder must be
 * passed.
 * <li>1 - publicKeyCert - A hash of the public key certificate of the
 * holder must be passed.
 * <li>2 - otherObjectDigest - A hash of some other object type must be
 * passed. <code>otherObjectTypeID</code> must not be empty.
 * </ul>
 * <p>
 * This cannot be used if a v1 attribute certificate is used.
 * 
 * @param digestedObjectType The digest object type.
 * @param digestAlgorithm The algorithm identifier for the hash.
 * @param otherObjectTypeID The object type ID if
 *            <code>digestedObjectType</code> is
 *            <code>otherObjectDigest</code>.
 * @param objectDigest The hash value.
 */
public AttributeCertificateHolder(int digestedObjectType,
    String digestAlgorithm, String otherObjectTypeID, byte[] objectDigest)
{
    holder = new Holder(new ObjectDigestInfo(digestedObjectType,
        new ASN1ObjectIdentifier(otherObjectTypeID), new AlgorithmIdentifier(new ASN1ObjectIdentifier(digestAlgorithm)), Arrays
            .clone(objectDigest)));
}
 
开发者ID:thedrummeraki,项目名称:Aki-SSL,代码行数:31,代码来源:AttributeCertificateHolder.java

示例5: AttributeCertificateHolder

import org.bouncycastle.asn1.x509.ObjectDigestInfo; //导入依赖的package包/类
/**
 * Constructs a holder for v2 attribute certificates with a hash value for
 * some type of object.
 * <p>
 * <code>digestedObjectType</code> can be one of the following:
 * <ul>
 * <li>0 - publicKey - A hash of the public key of the holder must be
 * passed.
 * <li>1 - publicKeyCert - A hash of the public key certificate of the
 * holder must be passed.
 * <li>2 - otherObjectDigest - A hash of some other object type must be
 * passed. <code>otherObjectTypeID</code> must not be empty.
 * </ul>
 * <p>
 * This cannot be used if a v1 attribute certificate is used.
 * 
 * @param digestedObjectType The digest object type.
 * @param digestAlgorithm The algorithm identifier for the hash.
 * @param otherObjectTypeID The object type ID if
 *            <code>digestedObjectType</code> is
 *            <code>otherObjectDigest</code>.
 * @param objectDigest The hash value.
 */
public AttributeCertificateHolder(int digestedObjectType,
    String digestAlgorithm, String otherObjectTypeID, byte[] objectDigest)
{
    holder = new Holder(new ObjectDigestInfo(digestedObjectType,
        otherObjectTypeID, new AlgorithmIdentifier(digestAlgorithm), Arrays
            .clone(objectDigest)));
}
 
开发者ID:AcademicTorrents,项目名称:AcademicTorrents-Downloader,代码行数:31,代码来源:AttributeCertificateHolder.java


注:本文中的org.bouncycastle.asn1.x509.ObjectDigestInfo类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。