mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-11-15 00:42:06 +01:00
Fix KeyRingReader methods not ignoring marker packets
This commit is contained in:
parent
6a90c4303e
commit
be4962c531
1 changed files with 93 additions and 11 deletions
|
@ -19,9 +19,14 @@ import java.io.ByteArrayInputStream;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.io.InputStream;
|
import java.io.InputStream;
|
||||||
import java.nio.charset.Charset;
|
import java.nio.charset.Charset;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.Iterator;
|
||||||
|
import java.util.List;
|
||||||
import javax.annotation.Nonnull;
|
import javax.annotation.Nonnull;
|
||||||
|
|
||||||
|
import org.bouncycastle.bcpg.MarkerPacket;
|
||||||
import org.bouncycastle.openpgp.PGPException;
|
import org.bouncycastle.openpgp.PGPException;
|
||||||
|
import org.bouncycastle.openpgp.PGPObjectFactory;
|
||||||
import org.bouncycastle.openpgp.PGPPublicKeyRing;
|
import org.bouncycastle.openpgp.PGPPublicKeyRing;
|
||||||
import org.bouncycastle.openpgp.PGPPublicKeyRingCollection;
|
import org.bouncycastle.openpgp.PGPPublicKeyRingCollection;
|
||||||
import org.bouncycastle.openpgp.PGPSecretKeyRing;
|
import org.bouncycastle.openpgp.PGPSecretKeyRing;
|
||||||
|
@ -98,34 +103,111 @@ public class KeyRingReader {
|
||||||
return keyRingCollection(asciiArmored.getBytes(UTF8), isSilent);
|
return keyRingCollection(asciiArmored.getBytes(UTF8), isSilent);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
STATIC METHODS
|
|
||||||
*/
|
|
||||||
|
|
||||||
public static PGPPublicKeyRing readPublicKeyRing(@Nonnull InputStream inputStream) throws IOException {
|
public static PGPPublicKeyRing readPublicKeyRing(@Nonnull InputStream inputStream) throws IOException {
|
||||||
return new PGPPublicKeyRing(
|
PGPObjectFactory objectFactory = new PGPObjectFactory(
|
||||||
PGPUtil.getDecoderStream(inputStream),
|
getDecoderStream(inputStream),
|
||||||
ImplementationFactory.getInstance().getKeyFingerprintCalculator());
|
ImplementationFactory.getInstance().getKeyFingerprintCalculator());
|
||||||
|
Object next;
|
||||||
|
do {
|
||||||
|
next = objectFactory.nextObject();
|
||||||
|
if (next == null) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
if (next instanceof MarkerPacket) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if (next instanceof PGPPublicKeyRing) {
|
||||||
|
return (PGPPublicKeyRing) next;
|
||||||
|
}
|
||||||
|
} while (true);
|
||||||
|
|
||||||
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static PGPPublicKeyRingCollection readPublicKeyRingCollection(@Nonnull InputStream inputStream)
|
public static PGPPublicKeyRingCollection readPublicKeyRingCollection(@Nonnull InputStream inputStream)
|
||||||
throws IOException, PGPException {
|
throws IOException, PGPException {
|
||||||
return new PGPPublicKeyRingCollection(
|
PGPObjectFactory objectFactory = new PGPObjectFactory(
|
||||||
getDecoderStream(inputStream),
|
getDecoderStream(inputStream),
|
||||||
ImplementationFactory.getInstance().getKeyFingerprintCalculator());
|
ImplementationFactory.getInstance().getKeyFingerprintCalculator());
|
||||||
|
|
||||||
|
List<PGPPublicKeyRing> rings = new ArrayList<>();
|
||||||
|
|
||||||
|
Object next;
|
||||||
|
do {
|
||||||
|
next = objectFactory.nextObject();
|
||||||
|
if (next == null) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
if (next instanceof MarkerPacket) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if (next instanceof PGPPublicKeyRing) {
|
||||||
|
rings.add((PGPPublicKeyRing) next);
|
||||||
|
}
|
||||||
|
if (next instanceof PGPPublicKeyRingCollection) {
|
||||||
|
PGPPublicKeyRingCollection collection = (PGPPublicKeyRingCollection) next;
|
||||||
|
Iterator<PGPPublicKeyRing> iterator = collection.getKeyRings();
|
||||||
|
while (iterator.hasNext()) {
|
||||||
|
rings.add(iterator.next());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} while (true);
|
||||||
|
|
||||||
|
return new PGPPublicKeyRingCollection(rings);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static PGPSecretKeyRing readSecretKeyRing(@Nonnull InputStream inputStream) throws IOException, PGPException {
|
public static PGPSecretKeyRing readSecretKeyRing(@Nonnull InputStream inputStream) throws IOException {
|
||||||
return new PGPSecretKeyRing(
|
PGPObjectFactory objectFactory = new PGPObjectFactory(
|
||||||
PGPUtil.getDecoderStream(inputStream),
|
getDecoderStream(inputStream),
|
||||||
ImplementationFactory.getInstance().getKeyFingerprintCalculator());
|
ImplementationFactory.getInstance().getKeyFingerprintCalculator());
|
||||||
|
|
||||||
|
Object next;
|
||||||
|
do {
|
||||||
|
next = objectFactory.nextObject();
|
||||||
|
if (next == null) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
if (next instanceof MarkerPacket) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if (next instanceof PGPSecretKeyRing) {
|
||||||
|
return (PGPSecretKeyRing) next;
|
||||||
|
}
|
||||||
|
} while (true);
|
||||||
|
|
||||||
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static PGPSecretKeyRingCollection readSecretKeyRingCollection(@Nonnull InputStream inputStream)
|
public static PGPSecretKeyRingCollection readSecretKeyRingCollection(@Nonnull InputStream inputStream)
|
||||||
throws IOException, PGPException {
|
throws IOException, PGPException {
|
||||||
return new PGPSecretKeyRingCollection(
|
PGPObjectFactory objectFactory = new PGPObjectFactory(
|
||||||
getDecoderStream(inputStream),
|
getDecoderStream(inputStream),
|
||||||
ImplementationFactory.getInstance().getKeyFingerprintCalculator());
|
ImplementationFactory.getInstance().getKeyFingerprintCalculator());
|
||||||
|
|
||||||
|
List<PGPSecretKeyRing> rings = new ArrayList<>();
|
||||||
|
|
||||||
|
Object next;
|
||||||
|
do {
|
||||||
|
next = objectFactory.nextObject();
|
||||||
|
if (next == null) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
if (next instanceof MarkerPacket) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if (next instanceof PGPSecretKeyRing) {
|
||||||
|
rings.add((PGPSecretKeyRing) next);
|
||||||
|
}
|
||||||
|
if (next instanceof PGPSecretKeyRingCollection) {
|
||||||
|
PGPSecretKeyRingCollection collection = (PGPSecretKeyRingCollection) next;
|
||||||
|
Iterator<PGPSecretKeyRing> iterator = collection.getKeyRings();
|
||||||
|
while (iterator.hasNext()) {
|
||||||
|
rings.add(iterator.next());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} while (true);
|
||||||
|
|
||||||
|
return new PGPSecretKeyRingCollection(rings);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static PGPKeyRingCollection readKeyRingCollection(@Nonnull InputStream inputStream, boolean isSilent)
|
public static PGPKeyRingCollection readKeyRingCollection(@Nonnull InputStream inputStream, boolean isSilent)
|
||||||
|
|
Loading…
Reference in a new issue