Java 类org.bouncycastle.asn1.crmf.CRMFObjectIdentifiers 实例源码

项目:ipack    文件:CertificateRequestMessage.java   
/**
 * Return a control value of the specified type.
 *
 * @param type the type OID for the control value we are checking for.
 * @return the control value if present, null otherwise.
 */
public Control getControl(ASN1ObjectIdentifier type)
{
    AttributeTypeAndValue found = findControl(type);

    if (found != null)
    {
        if (found.getType().equals(CRMFObjectIdentifiers.id_regCtrl_pkiArchiveOptions))
        {
            return new PKIArchiveControl(PKIArchiveOptions.getInstance(found.getValue()));
        }
        if (found.getType().equals(CRMFObjectIdentifiers.id_regCtrl_regToken))
        {
            return new RegTokenControl(DERUTF8String.getInstance(found.getValue()));
        }
        if (found.getType().equals(CRMFObjectIdentifiers.id_regCtrl_authenticator))
        {
            return new AuthenticatorControl(DERUTF8String.getInstance(found.getValue()));
        }
    }

    return null;
}
项目:ipack    文件:PKIArchiveControlBuilder.java   
/**
 * Basic constructor - specify the contents of the PKIArchiveControl structure.
 *
 * @param privateKeyInfo the private key to be archived.
 * @param generalName the general name to be associated with the private key.
 */
public PKIArchiveControlBuilder(PrivateKeyInfo privateKeyInfo, GeneralName generalName)
{
    EncKeyWithID encKeyWithID = new EncKeyWithID(privateKeyInfo, generalName);

    try
    {
        this.keyContent = new CMSProcessableByteArray(CRMFObjectIdentifiers.id_ct_encKeyWithID, encKeyWithID.getEncoded());
    }
    catch (IOException e)
    {
        throw new IllegalStateException("unable to encode key and general name info");
    }

    this.envGen = new CMSEnvelopedDataGenerator();
}
项目:gwt-crypto    文件:CertificateRequestMessage.java   
/**
 * Return a control value of the specified type.
 *
 * @param type the type OID for the control value we are checking for.
 * @return the control value if present, null otherwise.
 */
public Control getControl(ASN1ObjectIdentifier type)
{
    AttributeTypeAndValue found = findControl(type);

    if (found != null)
    {
        if (found.getType().equals(CRMFObjectIdentifiers.id_regCtrl_pkiArchiveOptions))
        {
            return new PKIArchiveControl(PKIArchiveOptions.getInstance(found.getValue()));
        }
        if (found.getType().equals(CRMFObjectIdentifiers.id_regCtrl_regToken))
        {
            return new RegTokenControl(DERUTF8String.getInstance(found.getValue()));
        }
        if (found.getType().equals(CRMFObjectIdentifiers.id_regCtrl_authenticator))
        {
            return new AuthenticatorControl(DERUTF8String.getInstance(found.getValue()));
        }
    }

    return null;
}
项目:gwt-crypto    文件:PKIArchiveControlBuilder.java   
/**
 * Basic constructor - specify the contents of the PKIArchiveControl structure.
 *
 * @param privateKeyInfo the private key to be archived.
 * @param generalName the general name to be associated with the private key.
 */
public PKIArchiveControlBuilder(PrivateKeyInfo privateKeyInfo, GeneralName generalName)
{
    EncKeyWithID encKeyWithID = new EncKeyWithID(privateKeyInfo, generalName);

    try
    {
        this.keyContent = new CMSProcessableByteArray(CRMFObjectIdentifiers.id_ct_encKeyWithID, encKeyWithID.getEncoded());
    }
    catch (IOException e)
    {
        throw new IllegalStateException("unable to encode key and general name info");
    }

    this.envGen = new CMSEnvelopedDataGenerator();
}
项目:Aki-SSL    文件:CertificateRequestMessage.java   
/**
 * Return a control value of the specified type.
 *
 * @param type the type OID for the control value we are checking for.
 * @return the control value if present, null otherwise.
 */
public Control getControl(ASN1ObjectIdentifier type)
{
    AttributeTypeAndValue found = findControl(type);

    if (found != null)
    {
        if (found.getType().equals(CRMFObjectIdentifiers.id_regCtrl_pkiArchiveOptions))
        {
            return new PKIArchiveControl(PKIArchiveOptions.getInstance(found.getValue()));
        }
        if (found.getType().equals(CRMFObjectIdentifiers.id_regCtrl_regToken))
        {
            return new RegTokenControl(DERUTF8String.getInstance(found.getValue()));
        }
        if (found.getType().equals(CRMFObjectIdentifiers.id_regCtrl_authenticator))
        {
            return new AuthenticatorControl(DERUTF8String.getInstance(found.getValue()));
        }
    }

    return null;
}
项目:Aki-SSL    文件:PKIArchiveControlBuilder.java   
/**
 * Basic constructor - specify the contents of the PKIArchiveControl structure.
 *
 * @param privateKeyInfo the private key to be archived.
 * @param generalName the general name to be associated with the private key.
 */
public PKIArchiveControlBuilder(PrivateKeyInfo privateKeyInfo, GeneralName generalName)
{
    EncKeyWithID encKeyWithID = new EncKeyWithID(privateKeyInfo, generalName);

    try
    {
        this.keyContent = new CMSProcessableByteArray(CRMFObjectIdentifiers.id_ct_encKeyWithID, encKeyWithID.getEncoded());
    }
    catch (IOException e)
    {
        throw new IllegalStateException("unable to encode key and general name info");
    }

    this.envGen = new CMSEnvelopedDataGenerator();
}
项目:irma_future_id    文件:CertificateRequestMessage.java   
/**
 * Return a control value of the specified type.
 *
 * @param type the type OID for the control value we are checking for.
 * @return the control value if present, null otherwise.
 */
public Control getControl(ASN1ObjectIdentifier type)
{
    AttributeTypeAndValue found = findControl(type);

    if (found != null)
    {
        if (found.getType().equals(CRMFObjectIdentifiers.id_regCtrl_pkiArchiveOptions))
        {
            return new PKIArchiveControl(PKIArchiveOptions.getInstance(found.getValue()));
        }
        if (found.getType().equals(CRMFObjectIdentifiers.id_regCtrl_regToken))
        {
            return new RegTokenControl(DERUTF8String.getInstance(found.getValue()));
        }
        if (found.getType().equals(CRMFObjectIdentifiers.id_regCtrl_authenticator))
        {
            return new AuthenticatorControl(DERUTF8String.getInstance(found.getValue()));
        }
    }

    return null;
}
项目:irma_future_id    文件:PKIArchiveControlBuilder.java   
/**
 * Basic constructor - specify the contents of the PKIArchiveControl structure.
 *
 * @param privateKeyInfo the private key to be archived.
 * @param generalName the general name to be associated with the private key.
 */
public PKIArchiveControlBuilder(PrivateKeyInfo privateKeyInfo, GeneralName generalName)
{
    EncKeyWithID encKeyWithID = new EncKeyWithID(privateKeyInfo, generalName);

    try
    {
        this.keyContent = new CMSProcessableByteArray(CRMFObjectIdentifiers.id_ct_encKeyWithID, encKeyWithID.getEncoded());
    }
    catch (IOException e)
    {
        throw new IllegalStateException("unable to encode key and general name info");
    }

    this.envGen = new CMSEnvelopedDataGenerator();
}
项目:irma_future_id    文件:CertificateRequestMessage.java   
/**
 * Return a control value of the specified type.
 *
 * @param type the type OID for the control value we are checking for.
 * @return the control value if present, null otherwise.
 */
public Control getControl(ASN1ObjectIdentifier type)
{
    AttributeTypeAndValue found = findControl(type);

    if (found != null)
    {
        if (found.getType().equals(CRMFObjectIdentifiers.id_regCtrl_pkiArchiveOptions))
        {
            return new PKIArchiveControl(PKIArchiveOptions.getInstance(found.getValue()));
        }
        if (found.getType().equals(CRMFObjectIdentifiers.id_regCtrl_regToken))
        {
            return new RegTokenControl(DERUTF8String.getInstance(found.getValue()));
        }
        if (found.getType().equals(CRMFObjectIdentifiers.id_regCtrl_authenticator))
        {
            return new AuthenticatorControl(DERUTF8String.getInstance(found.getValue()));
        }
    }

    return null;
}
项目:bc-java    文件:CertificateRequestMessage.java   
/**
 * Return a control value of the specified type.
 *
 * @param type the type OID for the control value we are checking for.
 * @return the control value if present, null otherwise.
 */
public Control getControl(ASN1ObjectIdentifier type)
{
    AttributeTypeAndValue found = findControl(type);

    if (found != null)
    {
        if (found.getType().equals(CRMFObjectIdentifiers.id_regCtrl_pkiArchiveOptions))
        {
            return new PKIArchiveControl(PKIArchiveOptions.getInstance(found.getValue()));
        }
        if (found.getType().equals(CRMFObjectIdentifiers.id_regCtrl_regToken))
        {
            return new RegTokenControl(DERUTF8String.getInstance(found.getValue()));
        }
        if (found.getType().equals(CRMFObjectIdentifiers.id_regCtrl_authenticator))
        {
            return new AuthenticatorControl(DERUTF8String.getInstance(found.getValue()));
        }
    }

    return null;
}
项目:bc-java    文件:PKIArchiveControlBuilder.java   
/**
 * Basic constructor - specify the contents of the PKIArchiveControl structure.
 *
 * @param privateKeyInfo the private key to be archived.
 * @param generalName the general name to be associated with the private key.
 */
public PKIArchiveControlBuilder(PrivateKeyInfo privateKeyInfo, GeneralName generalName)
{
    EncKeyWithID encKeyWithID = new EncKeyWithID(privateKeyInfo, generalName);

    try
    {
        this.keyContent = new CMSProcessableByteArray(CRMFObjectIdentifiers.id_ct_encKeyWithID, encKeyWithID.getEncoded());
    }
    catch (IOException e)
    {
        throw new IllegalStateException("unable to encode key and general name info");
    }

    this.envGen = new CMSEnvelopedDataGenerator();
}
项目:bc-java    文件:CertificateRequestMessage.java   
/**
 * Return a control value of the specified type.
 *
 * @param type the type OID for the control value we are checking for.
 * @return the control value if present, null otherwise.
 */
public Control getControl(ASN1ObjectIdentifier type)
{
    AttributeTypeAndValue found = findControl(type);

    if (found != null)
    {
        if (found.getType().equals(CRMFObjectIdentifiers.id_regCtrl_pkiArchiveOptions))
        {
            return new PKIArchiveControl(PKIArchiveOptions.getInstance(found.getValue()));
        }
        if (found.getType().equals(CRMFObjectIdentifiers.id_regCtrl_regToken))
        {
            return new RegTokenControl(DERUTF8String.getInstance(found.getValue()));
        }
        if (found.getType().equals(CRMFObjectIdentifiers.id_regCtrl_authenticator))
        {
            return new AuthenticatorControl(DERUTF8String.getInstance(found.getValue()));
        }
    }

    return null;
}
项目:irma_future_id    文件:AllTests.java   
public void testBasicMessageWithArchiveControl()
    throws Exception
{
    KeyPairGenerator kGen = KeyPairGenerator.getInstance("RSA", BC);

    kGen.initialize(512);

    KeyPair kp = kGen.generateKeyPair();
    X509Certificate cert = makeV1Certificate(kp, "CN=Test", kp, "CN=Test");

    JcaCertificateRequestMessageBuilder certReqBuild = new JcaCertificateRequestMessageBuilder(BigInteger.ONE);

    certReqBuild.setSubject(new X500Principal("CN=Test"))
                .setPublicKey(kp.getPublic());

    certReqBuild.addControl(new JcaPKIArchiveControlBuilder(kp.getPrivate(), new X500Principal("CN=Test"))
                                  .addRecipientGenerator(new JceKeyTransRecipientInfoGenerator(cert).setProvider(BC))
                                  .build(new JceCMSContentEncryptorBuilder(new ASN1ObjectIdentifier(CMSEnvelopedDataGenerator.AES128_CBC)).setProvider(BC).build()));

    JcaCertificateRequestMessage certReqMsg = new JcaCertificateRequestMessage(certReqBuild.build());

    assertEquals(new X500Principal("CN=Test"), certReqMsg.getSubjectX500Principal());
    assertEquals(kp.getPublic(), certReqMsg.getPublicKey());

    PKIArchiveControl archiveControl = (PKIArchiveControl)certReqMsg.getControl(CRMFObjectIdentifiers.id_regCtrl_pkiArchiveOptions);

    assertEquals(PKIArchiveControl.encryptedPrivKey, archiveControl.getArchiveType());

    assertTrue(archiveControl.isEnvelopedData());

    RecipientInformationStore recips = archiveControl.getEnvelopedData().getRecipientInfos();

    RecipientId recipientId = new JceKeyTransRecipientId(cert);

    RecipientInformation recipientInformation = recips.get(recipientId);

    assertNotNull(recipientInformation);

    EncKeyWithID encKeyWithID = EncKeyWithID.getInstance(recipientInformation.getContent(new JceKeyTransEnvelopedRecipient(kp.getPrivate()).setProvider(BC)));

    assertTrue(encKeyWithID.hasIdentifier());
    assertFalse(encKeyWithID.isIdentifierUTF8String());

    assertEquals(new GeneralName(X500Name.getInstance(new X500Principal("CN=Test").getEncoded())), encKeyWithID.getIdentifier());
    assertTrue(Arrays.areEqual(kp.getPrivate().getEncoded(), encKeyWithID.getPrivateKey().getEncoded()));
}
项目:irma_future_id    文件:AllTests.java   
public void testBasicMessageWithArchiveControl()
    throws Exception
{
    KeyPairGenerator kGen = KeyPairGenerator.getInstance("RSA", BC);

    kGen.initialize(512);

    KeyPair kp = kGen.generateKeyPair();
    X509Certificate cert = makeV1Certificate(kp, "CN=Test", kp, "CN=Test");

    JcaCertificateRequestMessageBuilder certReqBuild = new JcaCertificateRequestMessageBuilder(BigInteger.ONE);

    certReqBuild.setPublicKey(kp.getPublic())
                .setSubject(new X500Name("CN=Test"));

    certReqBuild.addControl(new JcaPKIArchiveControlBuilder(kp.getPrivate(), new X500Name("CN=Test"))
                                  .addRecipientGenerator(new JceKeyTransRecipientInfoGenerator(cert).setProvider(BC))
                                  .build(new JceCMSContentEncryptorBuilder(new ASN1ObjectIdentifier(CMSEnvelopedDataGenerator.AES128_CBC)).setProvider(BC).build()));

    JcaCertificateRequestMessage certReqMsg = new JcaCertificateRequestMessage(certReqBuild.build());

    assertEquals(new X500Name("CN=Test"), certReqMsg.getCertTemplate().getSubject());
    assertEquals(kp.getPublic(), certReqMsg.getPublicKey());

    PKIArchiveControl archiveControl = (PKIArchiveControl)certReqMsg.getControl(CRMFObjectIdentifiers.id_regCtrl_pkiArchiveOptions);

    assertEquals(PKIArchiveControl.encryptedPrivKey, archiveControl.getArchiveType());

    assertTrue(archiveControl.isEnvelopedData());

    RecipientInformationStore recips = archiveControl.getEnvelopedData().getRecipientInfos();

    RecipientId recipientId = new JceKeyTransRecipientId(cert);

    RecipientInformation recipientInformation = recips.get(recipientId);

    assertNotNull(recipientInformation);

    EncKeyWithID encKeyWithID = EncKeyWithID.getInstance(recipientInformation.getContent(new JceKeyTransEnvelopedRecipient(kp.getPrivate()).setProvider(BC)));

    assertTrue(encKeyWithID.hasIdentifier());
    assertFalse(encKeyWithID.isIdentifierUTF8String());

    assertEquals(new GeneralName(X500Name.getInstance(new X500Name("CN=Test").getEncoded())), encKeyWithID.getIdentifier());
    assertTrue(Arrays.areEqual(kp.getPrivate().getEncoded(), encKeyWithID.getPrivateKey().getEncoded()));
}
项目:bc-java    文件:AllTests.java   
public void testBasicMessageWithArchiveControl()
    throws Exception
{
    KeyPairGenerator kGen = KeyPairGenerator.getInstance("RSA", BC);

    kGen.initialize(512);

    KeyPair kp = kGen.generateKeyPair();
    X509Certificate cert = makeV1Certificate(kp, "CN=Test", kp, "CN=Test");

    JcaCertificateRequestMessageBuilder certReqBuild = new JcaCertificateRequestMessageBuilder(BigInteger.ONE);

    certReqBuild.setSubject(new X500Principal("CN=Test"))
                .setPublicKey(kp.getPublic());

    certReqBuild.addControl(new JcaPKIArchiveControlBuilder(kp.getPrivate(), new X500Principal("CN=Test"))
                                  .addRecipientGenerator(new JceKeyTransRecipientInfoGenerator(cert).setProvider(BC))
                                  .build(new JceCMSContentEncryptorBuilder(new ASN1ObjectIdentifier(CMSEnvelopedDataGenerator.AES128_CBC)).setProvider(BC).build()));

    JcaCertificateRequestMessage certReqMsg = new JcaCertificateRequestMessage(certReqBuild.build());

    assertEquals(new X500Principal("CN=Test"), certReqMsg.getSubjectX500Principal());
    assertEquals(kp.getPublic(), certReqMsg.getPublicKey());

    PKIArchiveControl archiveControl = (PKIArchiveControl)certReqMsg.getControl(CRMFObjectIdentifiers.id_regCtrl_pkiArchiveOptions);

    assertEquals(PKIArchiveControl.encryptedPrivKey, archiveControl.getArchiveType());

    assertTrue(archiveControl.isEnvelopedData());

    RecipientInformationStore recips = archiveControl.getEnvelopedData().getRecipientInfos();

    RecipientId recipientId = new JceKeyTransRecipientId(cert);

    RecipientInformation recipientInformation = recips.get(recipientId);

    assertNotNull(recipientInformation);

    EncKeyWithID encKeyWithID = EncKeyWithID.getInstance(recipientInformation.getContent(new JceKeyTransEnvelopedRecipient(kp.getPrivate()).setProvider(BC)));

    assertTrue(encKeyWithID.hasIdentifier());
    assertFalse(encKeyWithID.isIdentifierUTF8String());

    assertEquals(new GeneralName(X500Name.getInstance(new X500Principal("CN=Test").getEncoded())), encKeyWithID.getIdentifier());
    assertTrue(Arrays.areEqual(kp.getPrivate().getEncoded(), encKeyWithID.getPrivateKey().getEncoded()));
}
项目:bc-java    文件:AllTests.java   
public void testBasicMessageWithArchiveControl()
    throws Exception
{
    KeyPairGenerator kGen = KeyPairGenerator.getInstance("RSA", BC);

    kGen.initialize(512);

    KeyPair kp = kGen.generateKeyPair();
    X509Certificate cert = makeV1Certificate(kp, "CN=Test", kp, "CN=Test");

    JcaCertificateRequestMessageBuilder certReqBuild = new JcaCertificateRequestMessageBuilder(BigInteger.ONE);

    certReqBuild.setPublicKey(kp.getPublic())
                .setSubject(new X500Name("CN=Test"));

    certReqBuild.addControl(new JcaPKIArchiveControlBuilder(kp.getPrivate(), new X500Name("CN=Test"))
                                  .addRecipientGenerator(new JceKeyTransRecipientInfoGenerator(cert).setProvider(BC))
                                  .build(new JceCMSContentEncryptorBuilder(new ASN1ObjectIdentifier(CMSEnvelopedDataGenerator.AES128_CBC)).setProvider(BC).build()));

    JcaCertificateRequestMessage certReqMsg = new JcaCertificateRequestMessage(certReqBuild.build());

    assertEquals(new X500Name("CN=Test"), certReqMsg.getCertTemplate().getSubject());
    assertEquals(kp.getPublic(), certReqMsg.getPublicKey());

    PKIArchiveControl archiveControl = (PKIArchiveControl)certReqMsg.getControl(CRMFObjectIdentifiers.id_regCtrl_pkiArchiveOptions);

    assertEquals(PKIArchiveControl.encryptedPrivKey, archiveControl.getArchiveType());

    assertTrue(archiveControl.isEnvelopedData());

    RecipientInformationStore recips = archiveControl.getEnvelopedData().getRecipientInfos();

    RecipientId recipientId = new JceKeyTransRecipientId(cert);

    RecipientInformation recipientInformation = recips.get(recipientId);

    assertNotNull(recipientInformation);

    EncKeyWithID encKeyWithID = EncKeyWithID.getInstance(recipientInformation.getContent(new JceKeyTransEnvelopedRecipient(kp.getPrivate()).setProvider(BC)));

    assertTrue(encKeyWithID.hasIdentifier());
    assertFalse(encKeyWithID.isIdentifierUTF8String());

    assertEquals(new GeneralName(X500Name.getInstance(new X500Name("CN=Test").getEncoded())), encKeyWithID.getIdentifier());
    assertTrue(Arrays.areEqual(kp.getPrivate().getEncoded(), encKeyWithID.getPrivateKey().getEncoded()));
}