本文整理匯總了Java中org.bouncycastle.openpgp.examples.ClearSignedFileProcessor類的典型用法代碼示例。如果您正苦於以下問題:Java ClearSignedFileProcessor類的具體用法?Java ClearSignedFileProcessor怎麽用?Java ClearSignedFileProcessor使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
ClearSignedFileProcessor類屬於org.bouncycastle.openpgp.examples包,在下文中一共展示了ClearSignedFileProcessor類的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: testClearSigned
import org.bouncycastle.openpgp.examples.ClearSignedFileProcessor; //導入依賴的package包/類
public void testClearSigned()
throws Exception
{
createTestFile(clearSignedPublicKey, "pub.bpg");
checkClearSignedVerify(nlOnlySignedMessage);
checkClearSignedVerify(crOnlySignedMessage);
checkClearSignedVerify(crNlSignedMessage);
checkClearSignedVerify(crNlSignedMessageTrailingWhiteSpace);
ClearSignedFileProcessor.main(new String[] { "-v", "test.txt.asc", "pub.bpg" });
RSAKeyPairGenerator.main(new String[] { "test", "password" });
checkClearSigned(crOnlyMessage);
checkClearSigned(nlOnlyMessage);
checkClearSigned(crNlMessage);
checkClearSigned(crNlMessageTrailingWhiteSpace);
}
示例2: testClearSignedBogusInput
import org.bouncycastle.openpgp.examples.ClearSignedFileProcessor; //導入依賴的package包/類
public void testClearSignedBogusInput()
throws Exception
{
createTestFile(clearSignedPublicKey, "test.txt");
ClearSignedFileProcessor.main(new String[] { "-s", "test.txt", "secret.bpg", "password" });
}
示例3: checkClearSignedVerify
import org.bouncycastle.openpgp.examples.ClearSignedFileProcessor; //導入依賴的package包/類
private void checkClearSignedVerify(String message)
throws Exception
{
createTestData(message, "test.txt.asc");
ClearSignedFileProcessor.main(new String[] { "-v", "test.txt.asc", "pub.bpg" });
}
示例4: checkClearSigned
import org.bouncycastle.openpgp.examples.ClearSignedFileProcessor; //導入依賴的package包/類
private void checkClearSigned(String message)
throws Exception
{
createTestData(message, "test.txt");
ClearSignedFileProcessor.main(new String[] { "-s", "test.txt", "secret.bpg", "password" });
ClearSignedFileProcessor.main(new String[] { "-v", "test.txt.asc", "pub.bpg" });
}