aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/src/main/java/org/spongycastle/openpgp/jcajce/JcaSkipMarkerPGPObjectFactory.java
blob: a60c8e4995157d2736c119f26e59393a8512be70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package org.spongycastle.openpgp.jcajce;


import java.io.IOException;
import java.io.InputStream;

import org.spongycastle.openpgp.PGPMarker;


public class JcaSkipMarkerPGPObjectFactory extends JcaPGPObjectFactory {

    public JcaSkipMarkerPGPObjectFactory(InputStream in) {
        super(in);
    }

    @Override
    public Object nextObject() throws IOException {
        Object o = super.nextObject();
        while (o instanceof PGPMarker) {
            o = super.nextObject();
        }
        return o;
    }
}