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

Java PublicKeyDataDecryptorFactory类代码示例

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

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



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

示例1: build

import org.bouncycastle.openpgp.operator.PublicKeyDataDecryptorFactory; //导入依赖的package包/类
public PublicKeyDataDecryptorFactory build(final PrivateKey privKey)
{
     return new PublicKeyDataDecryptorFactory()
     {
         public byte[] recoverSessionData(int keyAlgorithm, byte[][] secKeyData)
             throws PGPException
         {
             if (keyAlgorithm == PublicKeyAlgorithmTags.ECDH)
             {
                 throw new PGPException("ECDH requires use of PGPPrivateKey for decryption");
             }
             return decryptSessionData(keyAlgorithm, privKey, secKeyData);
         }

         public PGPDataDecryptor createDataDecryptor(boolean withIntegrityPacket, int encAlgorithm, byte[] key)
             throws PGPException
         {
             return contentHelper.createDataDecryptor(withIntegrityPacket, encAlgorithm, key);
         }
     };
}
 
开发者ID:NoYouShutup,项目名称:CryptMeme,代码行数:22,代码来源:JcePublicKeyDataDecryptorFactoryBuilder.java


示例2: build

import org.bouncycastle.openpgp.operator.PublicKeyDataDecryptorFactory; //导入依赖的package包/类
public PublicKeyDataDecryptorFactory build(final PrivateKey privKey)
{
     return new PublicKeyDataDecryptorFactory()
     {
         public byte[] recoverSessionData(int keyAlgorithm, BigInteger[] secKeyData)
             throws PGPException
         {
             return decryptSessionData(keyAlgorithm, privKey, secKeyData);
         }

         public PGPDataDecryptor createDataDecryptor(boolean withIntegrityPacket, int encAlgorithm, byte[] key)
             throws PGPException
         {
             return contentHelper.createDataDecryptor(withIntegrityPacket, encAlgorithm, key);
         }
     };
}
 
开发者ID:credentials,项目名称:irma_future_id,代码行数:18,代码来源:JcePublicKeyDataDecryptorFactoryBuilder.java


示例3: buildPublicKeyDecryptor

import org.bouncycastle.openpgp.operator.PublicKeyDataDecryptorFactory; //导入依赖的package包/类
/**
 * Builds a symmetric-encryption decryptor for the specified passphrase.
 */
protected PublicKeyDataDecryptorFactory buildPublicKeyDecryptor(
Subkey subkey) throws PGPException {
    PGPPrivateKey privateKey = subkey.getPrivateKey();
    if (privateKey == null)
        throw new PGPException("no private key for " + subkey);
    return new BcPublicKeyDataDecryptorFactory(privateKey);
}
 
开发者ID:justinludwig,项目名称:jpgpj,代码行数:11,代码来源:Decryptor.java


示例4: getSymmetricAlgorithm

import org.bouncycastle.openpgp.operator.PublicKeyDataDecryptorFactory; //导入依赖的package包/类
/**
 * Return the symmetric key algorithm required to decrypt the data protected by this object.
 *
 * @param dataDecryptorFactory   decryptor factory to use to recover the session data.
 * @return  the integer encryption algorithm code.
 * @throws PGPException if the session data cannot be recovered.
 */
public int getSymmetricAlgorithm(
    PublicKeyDataDecryptorFactory dataDecryptorFactory)
    throws PGPException
{
    byte[] plain = dataDecryptorFactory.recoverSessionData(keyData.getAlgorithm(), keyData.getEncSessionKey());

    return plain[0];
}
 
开发者ID:ttt43ttt,项目名称:gwt-crypto,代码行数:16,代码来源:PGPPublicKeyEncryptedData.java


示例5: encryptAndDecrypt

import org.bouncycastle.openpgp.operator.PublicKeyDataDecryptorFactory; //导入依赖的package包/类
@Test
public void encryptAndDecrypt() throws Exception {
	// both keys have property encryptionKey==true
	final String[] keyIds = {
			"d7a92a24aa97ddbd", // master-key
			"a58da7d810b74edf" // sub-key
	};

	for (final String keyId : keyIds) {
		final PGPDataEncryptorBuilder encryptorBuilder = new BcPGPDataEncryptorBuilder(SymmetricKeyAlgorithmTags.TWOFISH);
		final PGPEncryptedDataGenerator encryptedDataGenerator = new PGPEncryptedDataGenerator(encryptorBuilder);
		final PGPKeyEncryptionMethodGenerator keyEncryptionMethodGenerator = new BcPublicKeyKeyEncryptionMethodGenerator(
				getPgpPublicKeyOrFail(bytesToLong(decodeHexStr(keyId))));

		encryptedDataGenerator.addMethod(keyEncryptionMethodGenerator);

		final byte[] plain = new byte[1 + random.nextInt(1024 * 1024)];
		random.nextBytes(plain);

		final File encryptedFile = File.createTempFile("encrypted_", ".tmp");
		try (final OutputStream encryptedOut = new FileOutputStream(encryptedFile);) {
			try (final OutputStream plainOut = encryptedDataGenerator.open(encryptedOut, new byte[1024 * 16]);) {
				plainOut.write(plain);
			}
		}

		final byte[] decrypted;
		try (InputStream in = new FileInputStream(encryptedFile)) {
			final PGPEncryptedDataList encryptedDataList = new PGPEncryptedDataList(new BCPGInputStream(in));
			final Iterator<?> encryptedDataObjects = encryptedDataList.getEncryptedDataObjects();
			assertThat(encryptedDataObjects.hasNext()).isTrue();
			final PGPPublicKeyEncryptedData encryptedData = (PGPPublicKeyEncryptedData) encryptedDataObjects.next();
			assertThat(encryptedDataObjects.hasNext()).isFalse();

			final PublicKeyDataDecryptorFactory dataDecryptorFactory = new BcPublicKeyDataDecryptorFactory(
					getPgpPrivateKeyOrFail(encryptedData.getKeyID(), "test12345".toCharArray()));

			try (InputStream plainIn = encryptedData.getDataStream(dataDecryptorFactory);) {
				final ByteArrayOutputStream out = new ByteArrayOutputStream();
				transferStreamData(plainIn, out);
				decrypted = out.toByteArray();
			}
		}

		assertThat(decrypted).isEqualTo(plain);

		encryptedFile.delete(); // delete it, if this test did not fail
	}
}
 
开发者ID:subshare,项目名称:subshare,代码行数:50,代码来源:GnuPgTest.java



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


鲜花

握手

雷人

路过

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

请发表评论

全部评论

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

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

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

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

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