mirror of
https://github.com/pgpainless/pgpainless.git
synced 2025-09-12 11:49:38 +02:00
SOP: Hide armor version header by default
This commit is contained in:
parent
48005da7f3
commit
86b06ee5e3
3 changed files with 19 additions and 6 deletions
|
@ -4,6 +4,7 @@
|
|||
|
||||
package org.pgpainless.sop;
|
||||
|
||||
import org.pgpainless.util.ArmoredOutputStreamFactory;
|
||||
import sop.SOP;
|
||||
import sop.operation.Armor;
|
||||
import sop.operation.Dearmor;
|
||||
|
@ -20,6 +21,10 @@ import sop.operation.Version;
|
|||
|
||||
public class SOPImpl implements SOP {
|
||||
|
||||
static {
|
||||
ArmoredOutputStreamFactory.setVersionInfo(null);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Version version() {
|
||||
return new VersionImpl();
|
||||
|
|
|
@ -18,7 +18,6 @@ import sop.exception.SOPGPException;
|
|||
public class ExtractCertTest {
|
||||
|
||||
public static final String key = "-----BEGIN PGP PRIVATE KEY BLOCK-----\n" +
|
||||
"Version: PGPainless\n" +
|
||||
"Comment: A8D9 9FF4 C8DD BBA6 C610 A6B7 9ACB 2195 A9BC DF5B\n" +
|
||||
"Comment: Alice <alice@pgpainless.org>\n" +
|
||||
"\n" +
|
||||
|
@ -42,7 +41,6 @@ public class ExtractCertTest {
|
|||
"-----END PGP PRIVATE KEY BLOCK-----\n";
|
||||
|
||||
public static final String cert = "-----BEGIN PGP PUBLIC KEY BLOCK-----\n" +
|
||||
"Version: PGPainless\n" +
|
||||
"Comment: A8D9 9FF4 C8DD BBA6 C610 A6B7 9ACB 2195 A9BC DF5B\n" +
|
||||
"Comment: Alice <alice@pgpainless.org>\n" +
|
||||
"\n" +
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue