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


Java RecipientKeyIdentifier类代码示例

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


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

示例1: SMIMEEncryptionKeyPreferenceAttribute

import org.bouncycastle.asn1.cms.RecipientKeyIdentifier; //导入依赖的package包/类
public SMIMEEncryptionKeyPreferenceAttribute(
    RecipientKeyIdentifier rKeyId)
{

    super(SMIMEAttributes.encrypKeyPref, 
                new DERSet(new DERTaggedObject(false, 1, rKeyId)));
}
 
开发者ID:Appdome,项目名称:ipack,代码行数:8,代码来源:SMIMEEncryptionKeyPreferenceAttribute.java

示例2: readRecipientInfo

import org.bouncycastle.asn1.cms.RecipientKeyIdentifier; //导入依赖的package包/类
static void readRecipientInfo(List infos, KeyAgreeRecipientInfo info,
    AlgorithmIdentifier messageAlgorithm, CMSSecureReadable secureReadable, AuthAttributesProvider additionalData)
{
    ASN1Sequence s = info.getRecipientEncryptedKeys();

    for (int i = 0; i < s.size(); ++i)
    {
        RecipientEncryptedKey id = RecipientEncryptedKey.getInstance(
            s.getObjectAt(i));

        RecipientId rid;

        KeyAgreeRecipientIdentifier karid = id.getIdentifier();
        IssuerAndSerialNumber iAndSN = karid.getIssuerAndSerialNumber();

        if (iAndSN != null)
        {
            rid = new KeyAgreeRecipientId(iAndSN.getName(), iAndSN.getSerialNumber().getValue());
        }
        else
        {
            RecipientKeyIdentifier rKeyID = karid.getRKeyID();

            // Note: 'date' and 'other' fields of RecipientKeyIdentifier appear to be only informational

            rid = new KeyAgreeRecipientId(rKeyID.getSubjectKeyIdentifier().getOctets());
        }

        infos.add(new KeyAgreeRecipientInformation(info, rid, id.getEncryptedKey(), messageAlgorithm,
            secureReadable, additionalData));
    }
}
 
开发者ID:Appdome,项目名称:ipack,代码行数:33,代码来源:KeyAgreeRecipientInformation.java

示例3: addRecipient

import org.bouncycastle.asn1.cms.RecipientKeyIdentifier; //导入依赖的package包/类
/**
 * Add a recipient identified by the passed in subjectKeyID and the for the passed in public key.
 *
 * @param subjectKeyID identifier actual recipient will use to match the private key.
 * @param publicKey the public key for encrypting the secret key.
 * @return the current instance.
 * @throws CertificateEncodingException
 */
public JceKeyAgreeRecipientInfoGenerator addRecipient(byte[] subjectKeyID, PublicKey publicKey)
    throws CertificateEncodingException
{
    recipientIDs.add(new KeyAgreeRecipientIdentifier(new RecipientKeyIdentifier(subjectKeyID)));
    recipientKeys.add(publicKey);

    return this;
}
 
开发者ID:Appdome,项目名称:ipack,代码行数:17,代码来源:JceKeyAgreeRecipientInfoGenerator.java

示例4: perform

import org.bouncycastle.asn1.cms.RecipientKeyIdentifier; //导入依赖的package包/类
public TestResult perform()
{
    SMIMECapabilityVector       caps = new SMIMECapabilityVector();
            
    caps.addCapability(SMIMECapability.dES_EDE3_CBC);
    caps.addCapability(SMIMECapability.rC2_CBC, 128);
    caps.addCapability(SMIMECapability.dES_CBC);
            
    SMIMECapabilitiesAttribute attr = new SMIMECapabilitiesAttribute(caps);
    
    SMIMEEncryptionKeyPreferenceAttribute   pref = new SMIMEEncryptionKeyPreferenceAttribute(
                                              new RecipientKeyIdentifier(new DEROctetString(new byte[8]), new DERGeneralizedTime("20070315173729Z"), null));
    
    try
    {
        if (!isSameAs(attr.getEncoded(), attrBytes))
        {
            return new SimpleTestResult(false, getName() + ": Failed attr data check");
        }
        
        ByteArrayInputStream    bIn = new ByteArrayInputStream(attrBytes);
        ASN1InputStream         aIn = new ASN1InputStream(bIn);
        
        ASN1Primitive o = aIn.readObject();
        if (!attr.equals(o))
        {
            return new SimpleTestResult(false, getName() + ": Failed equality test for attr");
        }
        
        if (!isSameAs(pref.getEncoded(), prefBytes))
        {
            return new SimpleTestResult(false, getName() + ": Failed attr data check");
        }
        
        bIn = new ByteArrayInputStream(prefBytes);
        aIn = new ASN1InputStream(bIn);
        
        o = aIn.readObject();
        if (!pref.equals(o))
        {
            return new SimpleTestResult(false, getName() + ": Failed equality test for pref");
        }
        
        return new SimpleTestResult(true, getName() + ": Okay");
    }
    catch (Exception e)
    {
        return new SimpleTestResult(false, getName() + ": Failed - exception " + e.toString(), e);
    }
}
 
开发者ID:credentials,项目名称:irma_future_id,代码行数:51,代码来源:SMIMETest.java


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