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


Java X509ExtensionUtils类代码示例

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


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

示例1: addKeyIdentifiers

import org.bouncycastle.cert.X509ExtensionUtils; //导入依赖的package包/类
private void addKeyIdentifiers(SubjectPublicKeyInfo subjectPubKeyInfo, SubjectPublicKeyInfo issuerPubKeyInfo, X509v3CertificateBuilder v3CertGen) throws OperatorCreationException, CertIOException {
	DigestCalculator digCalc = new BcDigestCalculatorProvider().get(new AlgorithmIdentifier(OIWObjectIdentifiers.idSHA1));
	X509ExtensionUtils x509ExtensionUtils = new X509ExtensionUtils(digCalc);

	v3CertGen.addExtension(Extension.subjectKeyIdentifier, false, x509ExtensionUtils.createSubjectKeyIdentifier(subjectPubKeyInfo));
	v3CertGen.addExtension(Extension.authorityKeyIdentifier, false, x509ExtensionUtils.createAuthorityKeyIdentifier(issuerPubKeyInfo));
}
 
开发者ID:fabiusks,项目名称:cert-services,代码行数:8,代码来源:CertificateService.java

示例2: x509ExtensionUtils

import org.bouncycastle.cert.X509ExtensionUtils; //导入依赖的package包/类
@Bean
public X509ExtensionUtils x509ExtensionUtils() throws OperatorCreationException {
  return new X509ExtensionUtils(new BcDigestCalculatorProvider().get(
      new AlgorithmIdentifier(OIWObjectIdentifiers.idSHA1)));
}
 
开发者ID:cloudfoundry-incubator,项目名称:credhub,代码行数:6,代码来源:CredentialManagerApp.java

示例3: generateX509

import org.bouncycastle.cert.X509ExtensionUtils; //导入依赖的package包/类
private void generateX509() throws Exception
{
    SecureRandom random = new SecureRandom();
    X500Name dnName = new X500Name(Subject);
    Calendar endValidity = Calendar.getInstance();
    endValidity.add(Calendar.YEAR, validityYear);

    SubjectPublicKeyInfo publicKeyInfo = SubjectPublicKeyInfo.getInstance(publicKey.getEncoded());

    X509v3CertificateBuilder gen = new X509v3CertificateBuilder(
            authorityCertificate == null ? dnName : authorityCertificate.getSubject(),
            BigIntegers.createRandomInRange(BigInteger.ZERO, BigInteger.valueOf(Long.MAX_VALUE), random), new Date(),
            endValidity.getTime(), dnName, publicKeyInfo);

    // Public key ID
    DigestCalculator digCalc = new BcDigestCalculatorProvider().get(new AlgorithmIdentifier(OIWObjectIdentifiers.idSHA1));
    X509ExtensionUtils x509ExtensionUtils = new X509ExtensionUtils(digCalc);
    gen.addExtension(Extension.subjectKeyIdentifier, false, x509ExtensionUtils.createSubjectKeyIdentifier(publicKeyInfo));

    // EKU
    gen.addExtension(Extension.extendedKeyUsage, false, new ExtendedKeyUsage(EKU));

    // Basic constraints (is CA?)
    if (authorityCertificate == null)
    {
        gen.addExtension(Extension.basicConstraints, true, new BasicConstraints(true));
    }

    // Key usage
    gen.addExtension(Extension.keyUsage, true, new KeyUsage(keyUsage));

    // Subject Alt names ?

    // Authority
    if (authorityCertificate != null)
    {
        gen.addExtension(Extension.authorityKeyIdentifier, false,
                new AuthorityKeyIdentifier(authorityCertificate.getSubjectPublicKeyInfo()));
    }

    // Signer
    ContentSigner signer = new JcaContentSignerBuilder("SHA512WithRSAEncryption").setProvider(Constants.JCA_PROVIDER)
            .build(authorityKey == null ? privateKey : authorityKey);

    // Go
    holder = gen.build(signer);
}
 
开发者ID:enioka,项目名称:jqm,代码行数:48,代码来源:CertificateRequest.java


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