summaryrefslogtreecommitdiff
path: root/app/src/main/java/org/spongycastle/util/io/pem/PemObjectGenerator.java
blob: ddce091c7e79ca442bfbb192a8775aa5ba48836e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/*
 * Copyright (c) 2012-2014 Arne Schwabe
 * Distributed under the GNU GPL v2 with additional terms. For full terms see the file doc/LICENSE.txt
 */

package org.spongycastle.util.io.pem;

public interface PemObjectGenerator
{
    PemObject generate()
        throws PemGenerationException;
}