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


Java PGPSecretKey.getPublicKey方法代码示例

本文整理汇总了Java中org.bouncycastle.openpgp.PGPSecretKey.getPublicKey方法的典型用法代码示例。如果您正苦于以下问题:Java PGPSecretKey.getPublicKey方法的具体用法?Java PGPSecretKey.getPublicKey怎么用?Java PGPSecretKey.getPublicKey使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.bouncycastle.openpgp.PGPSecretKey的用法示例。


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

示例1: deserializeKeyPair

import org.bouncycastle.openpgp.PGPSecretKey; //导入方法依赖的package包/类
/** Deserialize a PGPKeyPair */
public static PGPKeyPair deserializeKeyPair(byte[] serialized)
    throws IOException, PGPException {
  PGPSecretKey secretKey =
      new BcPGPSecretKeyRing(
          PGPUtil.getDecoderStream(
              new ByteArrayInputStream(serialized))).getSecretKey();
  return new PGPKeyPair(
      secretKey.getPublicKey(),
      secretKey.extractPrivateKey(createSecretKeyDecryptor()));
}
 
开发者ID:google,项目名称:nomulus,代码行数:12,代码来源:KeySerializer.java

示例2: getKeyPair

import org.bouncycastle.openpgp.PGPSecretKey; //导入方法依赖的package包/类
static PGPKeyPair getKeyPair() throws Exception {
  PGPSecretKey secretKey = getPrivateKeyring().getSecretKey();
  return new PGPKeyPair(
      secretKey.getPublicKey(),
      secretKey.extractPrivateKey(
          new BcPBESecretKeyDecryptorBuilder(new BcPGPDigestCalculatorProvider())
          .build(new char[0])));
}
 
开发者ID:google,项目名称:nomulus,代码行数:9,代码来源:KmsTestHelper.java

示例3: getPublicKey

import org.bouncycastle.openpgp.PGPSecretKey; //导入方法依赖的package包/类
public Content getPublicKey() throws IOException, PGPException {
  PGPSecretKey signKey = readSecretKey();
  PGPPublicKey publicKey = signKey.getPublicKey();
  ByteArrayOutputStream buffer = new ByteArrayOutputStream();
  try (BCPGOutputStream os = new BCPGOutputStream(new ArmoredOutputStream(buffer))) {
    publicKey.encode(os);
  }
  return new Content(new BytesPayload(buffer.toByteArray(), AptMimeTypes.PUBLICKEY));
}
 
开发者ID:sonatype-nexus-community,项目名称:nexus-repository-apt,代码行数:10,代码来源:AptSigningFacet.java

示例4: decrypt

import org.bouncycastle.openpgp.PGPSecretKey; //导入方法依赖的package包/类
static PGPKeyPair decrypt(PGPSecretKey secretKey, PBESecretKeyDecryptor dec) throws KonException {
    try {
        return new PGPKeyPair(secretKey.getPublicKey(), secretKey.extractPrivateKey(dec));
    } catch (PGPException ex) {
        LOGGER.log(Level.WARNING, "failed", ex);
        throw new KonException(KonException.Error.LOAD_KEY_DECRYPT, ex);
    }
}
 
开发者ID:kontalk,项目名称:desktopclient-java,代码行数:9,代码来源:PGPUtils.java


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