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


Java PGPLiteralData.getDataStream方法代码示例

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


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

示例1: checkLiteralData

import org.bouncycastle.openpgp.PGPLiteralData; //导入方法依赖的package包/类
private void checkLiteralData(PGPLiteralData ld, byte[] data)
    throws IOException
{
    ByteArrayOutputStream bOut = new ByteArrayOutputStream();

    if (!ld.getFileName().equals(PGPLiteralData.CONSOLE))
    {
        throw new RuntimeException("wrong filename in packet");
    }

    InputStream    inLd = ld.getDataStream();
    int ch;

    while ((ch = inLd.read()) >= 0)
    {
        bOut.write(ch);
    }

    if (!areEqual(bOut.toByteArray(), data))
    {
        fail("wrong plain text in decrypted packet");
    }
}
 
开发者ID:ttt43ttt,项目名称:gwt-crypto,代码行数:24,代码来源:BcPGPRSATest.java

示例2: openInput

import org.bouncycastle.openpgp.PGPLiteralData; //导入方法依赖的package包/类
/**
 * Opens a new {@link Input} for reading the original contents (Reading Step 3/3)
 *
 * <p>This is the final step in reading a ghostryde file. After calling this method, you should
 * call the read methods on the returned {@link InputStream}.
 *
 * @param input is the value returned by {@link #openDecompressor}.
 * @throws IOException
 * @throws PGPException
 */
@CheckReturnValue
public Input openInput(@WillNotClose Decompressor input) throws IOException, PGPException {
  PGPObjectFactory fact = new BcPGPObjectFactory(checkNotNull(input, "input"));
  PGPLiteralData literal = pgpCast(fact.nextObject(), PGPLiteralData.class);
  DateTime modified = new DateTime(literal.getModificationTime(), UTC);
  return new Input(literal.getDataStream(), literal.getFileName(), modified);
}
 
开发者ID:google,项目名称:nomulus,代码行数:18,代码来源:Ghostryde.java


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