• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

Java PGPDigestCalculator类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

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



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

示例1: createPGPKeyRingGenerator

import org.bouncycastle.openpgp.operator.PGPDigestCalculator; //导入依赖的package包/类
/**
 * 
 * @param dsaKeyPair - the generated DSA key pair
 * @param elGamalKeyPair - the generated El Gamal key pair
 * @param identity - the given identity of the key pair ring
 * @param passphrase - the secret pass phrase to protect the key pair
 * @return a PGP Key Ring Generate with the El Gamal key pair added as sub key
 * @throws Exception
 */
public static final PGPKeyRingGenerator createPGPKeyRingGenerator(KeyPair dsaKeyPair, KeyPair elGamalKeyPair, String identity, char[] passphrase) throws Exception {
        PGPKeyPair dsaPgpKeyPair = new JcaPGPKeyPair(PGPPublicKey.DSA, dsaKeyPair, new Date());
        PGPKeyPair elGamalPgpKeyPair = new JcaPGPKeyPair(PGPPublicKey.ELGAMAL_ENCRYPT, elGamalKeyPair, new Date());
        PGPDigestCalculator sha1Calc = new JcaPGPDigestCalculatorProviderBuilder().build().get(HashAlgorithmTags.SHA1);

        PGPKeyRingGenerator keyRingGen = new PGPKeyRingGenerator(
                        PGPSignature.POSITIVE_CERTIFICATION,
                        dsaPgpKeyPair,
                        identity,
                        sha1Calc,
                        null,
                        null,
                        new JcaPGPContentSignerBuilder(dsaPgpKeyPair.getPublicKey().getAlgorithm(), HashAlgorithmTags.SHA1),
                        new JcePBESecretKeyEncryptorBuilder(PGPEncryptedData.AES_256, sha1Calc).setProvider("BC").build(passphrase)
                        );

        keyRingGen.addSubKey(elGamalPgpKeyPair);
        return keyRingGen;
}
 
开发者ID:george-haddad,项目名称:bouncycastle,代码行数:29,代码来源:PGPKeyTools.java


示例2: createDataDecryptor

import org.bouncycastle.openpgp.operator.PGPDigestCalculator; //导入依赖的package包/类
public static PGPDataDecryptor createDataDecryptor(boolean withIntegrityPacket, BlockCipher engine, byte[] key)
{
    final BufferedBlockCipher c = createStreamCipher(false, engine, withIntegrityPacket, key);

    return new PGPDataDecryptor()
    {
        public InputStream getInputStream(InputStream in)
        {
            return new CipherInputStream(in, c);
        }

        public int getBlockSize()
        {
            return c.getBlockSize();
        }

        public PGPDigestCalculator getIntegrityCalculator()
        {
            return new SHA1PGPDigestCalculator();
        }
    };
}
 
开发者ID:ttt43ttt,项目名称:gwt-crypto,代码行数:23,代码来源:BcUtil.java


示例3: KDF

import org.bouncycastle.openpgp.operator.PGPDigestCalculator; //导入依赖的package包/类
private static byte[] KDF(PGPDigestCalculator digCalc, ECPoint s, int keyLen, byte[] param)
    throws IOException
{
    byte[] ZB = s.getXCoord().getEncoded();

    OutputStream dOut = digCalc.getOutputStream();

    dOut.write(0x00);
    dOut.write(0x00);
    dOut.write(0x00);
    dOut.write(0x01);
    dOut.write(ZB);
    dOut.write(param);

    byte[] digest = digCalc.getDigest();

    byte[] key = new byte[keyLen];

    System.arraycopy(digest, 0, key, 0, key.length);

    return key;
}
 
开发者ID:ttt43ttt,项目名称:gwt-crypto,代码行数:23,代码来源:RFC6637KDFCalculator.java


示例4: PGPKeyRingGenerator

import org.bouncycastle.openpgp.operator.PGPDigestCalculator; //导入依赖的package包/类
/**
 * Create a new key ring generator.
 *
 * @param certificationLevel
 * @param masterKey
 * @param id
 * @param checksumCalculator
 * @param hashedPcks
 * @param unhashedPcks
 * @param keySignerBuilder
 * @param keyEncryptor
 * @throws PGPException
 */
public PGPKeyRingGenerator(
    int                            certificationLevel,
    PGPKeyPair                     masterKey,
    String                         id,
    PGPDigestCalculator checksumCalculator,
    PGPSignatureSubpacketVector    hashedPcks,
    PGPSignatureSubpacketVector    unhashedPcks,
    PGPContentSignerBuilder        keySignerBuilder,
    PBESecretKeyEncryptor          keyEncryptor)
    throws PGPException
{
    this.masterKey = masterKey;
    this.keyEncryptor = keyEncryptor;
    this.checksumCalculator = checksumCalculator;
    this.keySignerBuilder = keySignerBuilder;
    this.hashedPcks = hashedPcks;
    this.unhashedPcks = unhashedPcks;

    keys.add(new PGPSecretKey(certificationLevel, masterKey, id, checksumCalculator, hashedPcks, unhashedPcks, keySignerBuilder, keyEncryptor));
}
 
开发者ID:ttt43ttt,项目名称:gwt-crypto,代码行数:34,代码来源:PGPKeyRingGenerator.java


示例5: PGPSecretKey

import org.bouncycastle.openpgp.operator.PGPDigestCalculator; //导入依赖的package包/类
/**
 * @deprecated use method taking PGPKeyPair
 */
public PGPSecretKey(
    int                         certificationLevel,
    int                         algorithm,
    PublicKey                   pubKey,
    PrivateKey                  privKey,
    Date                        time,
    String                      id,
    PGPDigestCalculator         checksumCalculator,
    PGPSignatureSubpacketVector hashedPcks,
    PGPSignatureSubpacketVector unhashedPcks,
    PGPContentSignerBuilder     certificationSignerBuilder,
    PBESecretKeyEncryptor       keyEncryptor)
    throws PGPException
{
    this(certificationLevel, new PGPKeyPair(algorithm, pubKey, privKey, time), id, checksumCalculator, hashedPcks, unhashedPcks, certificationSignerBuilder, keyEncryptor);
}
 
开发者ID:NoYouShutup,项目名称:CryptMeme,代码行数:20,代码来源:PGPSecretKey.java


示例6: copySecretKeyRingWithNewPassword

import org.bouncycastle.openpgp.operator.PGPDigestCalculator; //导入依赖的package包/类
public static PGPSecretKeyRing copySecretKeyRingWithNewPassword(byte[] privateKeyData,
        char[] oldPassphrase, char[] newPassphrase) throws PGPException, IOException, KonException {

    // load the secret key ring
    PGPSecretKeyRing secRing = new PGPSecretKeyRing(privateKeyData, FP_CALC);

    PGPDigestCalculatorProvider calcProv = new JcaPGPDigestCalculatorProviderBuilder().build();
    PBESecretKeyDecryptor decryptor = new JcePBESecretKeyDecryptorBuilder(calcProv)
        .setProvider(PGPUtils.PROVIDER)
        .build(oldPassphrase);

    PGPDigestCalculator calc = new JcaPGPDigestCalculatorProviderBuilder().build().get(HashAlgorithmTags.SHA256);
    PBESecretKeyEncryptor encryptor = new JcePBESecretKeyEncryptorBuilder(PGPEncryptedData.AES_256, calc)
        .setProvider(PROVIDER).build(newPassphrase);

    try {
        return PGPSecretKeyRing.copyWithNewPassword(secRing, decryptor, encryptor);
    } catch (PGPException ex) {
        // treat this special, cause most like the decryption password was wrong
        throw new KonException(KonException.Error.CHANGE_PASS_COPY, ex);
    }
}
 
开发者ID:kontalk,项目名称:desktopclient-java,代码行数:23,代码来源:PGPUtils.java


示例7: keygen

import org.bouncycastle.openpgp.operator.PGPDigestCalculator; //导入依赖的package包/类
public void keygen(
    String identity)
    throws IOException, InvalidKeyException, NoSuchProviderException, SignatureException, PGPException, NoSuchAlgorithmException
{    
    KeyPairGenerator kpg = KeyPairGenerator.getInstance("RSA", "BC");
    kpg.initialize(1024);

    KeyPair kp = kpg.generateKeyPair();
    
    
    OutputStream secretOut = new ArmoredOutputStream(new FileOutputStream("secret.pgp"));    
    OutputStream publicOut = new ArmoredOutputStream(new FileOutputStream("public.pgp"));


    PGPDigestCalculator sha1Calc = new JcaPGPDigestCalculatorProviderBuilder().build().get(HashAlgorithmTags.SHA1);
    PGPKeyPair keyPair = new JcaPGPKeyPair(PGPPublicKey.RSA_GENERAL, kp, new Date());
    secretKey = new PGPSecretKey(PGPSignature.DEFAULT_CERTIFICATION, keyPair, identity, sha1Calc, null, null,
            new JcaPGPContentSignerBuilder(keyPair.getPublicKey().getAlgorithm(), HashAlgorithmTags.SHA1),
            new JcePBESecretKeyEncryptorBuilder(PGPEncryptedData.CAST5, sha1Calc).setProvider("BC").build(passphrase.toCharArray()));

    secretKey.encode(secretOut);        
    secretOut.close();
    
    PGPPublicKey key = secretKey.getPublicKey();
    
    key.encode(publicOut);        
    publicOut.close();
}
 
开发者ID:Tethik,项目名称:whistleblower,代码行数:29,代码来源:CryptographyHandler.java


示例8: PGPSecretKey

import org.bouncycastle.openpgp.operator.PGPDigestCalculator; //导入依赖的package包/类
PGPSecretKey(
    PGPPrivateKey   privKey,
    PGPPublicKey    pubKey,
    PGPDigestCalculator checksumCalculator,
    PBESecretKeyEncryptor keyEncryptor)
    throws PGPException
{
    this(privKey, pubKey, checksumCalculator, false, keyEncryptor);
}
 
开发者ID:ttt43ttt,项目名称:gwt-crypto,代码行数:10,代码来源:PGPSecretKey.java


示例9: get

import org.bouncycastle.openpgp.operator.PGPDigestCalculator; //导入依赖的package包/类
public PGPDigestCalculator get(final int algorithm)
    throws PGPException
{
    final Digest dig = BcImplProvider.createDigest(algorithm);

    final DigestOutputStream stream = new DigestOutputStream(dig);

    return new PGPDigestCalculator()
    {
        public int getAlgorithm()
        {
            return algorithm;
        }

        public OutputStream getOutputStream()
        {
            return stream;
        }

        public byte[] getDigest()
        {
            return stream.getDigest();
        }

        public void reset()
        {
            dig.reset();
        }
    };
}
 
开发者ID:ttt43ttt,项目名称:gwt-crypto,代码行数:31,代码来源:BcPGPDigestCalculatorProvider.java


示例10: getIntegrityCalculator

import org.bouncycastle.openpgp.operator.PGPDigestCalculator; //导入依赖的package包/类
public PGPDigestCalculator getIntegrityCalculator()
{
    if (withIntegrityPacket)
    {
        return new SHA1PGPDigestCalculator();
    }

    return null;
}
 
开发者ID:ttt43ttt,项目名称:gwt-crypto,代码行数:10,代码来源:BcPGPDataEncryptorBuilder.java


示例11: BcPBESecretKeyEncryptorBuilder

import org.bouncycastle.openpgp.operator.PGPDigestCalculator; //导入依赖的package包/类
/**
 * Create an SecretKeyEncryptorBuilder with the S2k count different to the default of 0x60, and the S2K digest
 * different from SHA-1.
 *
 * @param encAlgorithm encryption algorithm to use.
 * @param s2kDigestCalculator digest calculator to use.
 * @param s2kCount iteration count to use for S2K function.
 */
public BcPBESecretKeyEncryptorBuilder(int encAlgorithm, PGPDigestCalculator s2kDigestCalculator, int s2kCount)
{
    this.encAlgorithm = encAlgorithm;
    this.s2kDigestCalculator = s2kDigestCalculator;

    if (s2kCount < 0 || s2kCount > 0xff)
    {
        throw new IllegalArgumentException("s2KCount value outside of range 0 to 255.");
    }

    this.s2kCount = s2kCount;
}
 
开发者ID:ttt43ttt,项目名称:gwt-crypto,代码行数:21,代码来源:BcPBESecretKeyEncryptorBuilder.java


示例12: generateKeyPair

import org.bouncycastle.openpgp.operator.PGPDigestCalculator; //导入依赖的package包/类
public SecretKey generateKeyPair(final String id, final char[] pass) throws CryptoException {
  try {

    // This object generates individual key-pairs.
    final RSAKeyPairGenerator kpg = new RSAKeyPairGenerator();
    kpg.init(new RSAKeyGenerationParameters(BigInteger.valueOf(0x10001), new SecureRandom(), 2048, 12));

    // First create the master (signing) key with the generator.
    final PGPKeyPair keyPair = new BcPGPKeyPair(PGPPublicKey.RSA_GENERAL, kpg.generateKeyPair(), new Date());

    // Add a self-signature on the id
    final PGPSignatureSubpacketGenerator signhashgen = new PGPSignatureSubpacketGenerator();
    signhashgen.setKeyFlags(true, KeyFlags.CERTIFY_OTHER | KeyFlags.SIGN_DATA | KeyFlags.ENCRYPT_COMMS | KeyFlags.ENCRYPT_STORAGE);
    signhashgen.setPreferredCompressionAlgorithms(false, new int[] { CompressionAlgorithmTags.ZIP });
    signhashgen.setPreferredHashAlgorithms(false, new int[] { HashAlgorithmTags.SHA1 });
    signhashgen.setPreferredSymmetricAlgorithms(false, new int[] { SymmetricKeyAlgorithmTags.AES_256 });
    signhashgen.setFeature(false, Features.FEATURE_MODIFICATION_DETECTION);

    // Create a signature on the encryption subkey.
    final PGPSignatureSubpacketGenerator enchashgen = new PGPSignatureSubpacketGenerator();
    enchashgen.setKeyFlags(false, KeyFlags.ENCRYPT_COMMS | KeyFlags.ENCRYPT_STORAGE);

    // Objects used to encrypt the secret key.

    // Finally, create the keyring itself. The constructor
    // takes parameters that allow it to generate the self
    // signature.
    final PGPDigestCalculator sha1Calc = new BcPGPDigestCalculatorProvider().get(HashAlgorithmTags.SHA1);
    final PBESecretKeyEncryptor secretKeyEncryptor = new BcPBESecretKeyEncryptorBuilder(PGPEncryptedData.AES_128, sha1Calc).build(pass);
    final BcPGPContentSignerBuilder contentSigner = new BcPGPContentSignerBuilder(keyPair.getPublicKey().getAlgorithm(), HashAlgorithmTags.SHA1);
    final PGPKeyRingGenerator keyRingGen = new PGPKeyRingGenerator(PGPSignature.POSITIVE_CERTIFICATION, keyPair, id, sha1Calc,
        signhashgen.generate(), null, contentSigner, secretKeyEncryptor);

    // return new SimpleKeyPair(new BcPGPPublicKey(publicKeyRing.getPublicKey()),
    return new BcPGPSecretKey(keyRingGen.generateSecretKeyRing().getSecretKey());
  }
  catch (final Exception e) {
    throw new CryptoException(e);
  }
}
 
开发者ID:hsch,项目名称:bcpg-simple,代码行数:41,代码来源:BcPGPKeyFactory.java


示例13: JcePBESecretKeyEncryptorBuilder

import org.bouncycastle.openpgp.operator.PGPDigestCalculator; //导入依赖的package包/类
/**
 * Create an SecretKeyEncryptorBuilder with the S2k count different to the default of 0x60, and the S2K digest
 * different from SHA-1.
 *
 * @param encAlgorithm encryption algorithm to use.
 * @param s2kDigestCalculator digest calculator to use.
 * @param s2kCount iteration count to use for S2K function.
 */
public JcePBESecretKeyEncryptorBuilder(int encAlgorithm, PGPDigestCalculator s2kDigestCalculator, int s2kCount)
{
    this.encAlgorithm = encAlgorithm;
    this.s2kDigestCalculator = s2kDigestCalculator;

    if (s2kCount < 0 || s2kCount > 0xff)
    {
        throw new IllegalArgumentException("s2KCount value outside of range 0 to 255.");
    }

    this.s2kCount = s2kCount;
}
 
开发者ID:NoYouShutup,项目名称:CryptMeme,代码行数:21,代码来源:JcePBESecretKeyEncryptorBuilder.java



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java TestingCluster类代码示例发布时间:2022-05-21
下一篇:
Java PathParameter类代码示例发布时间:2022-05-21
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap