aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/core/src/main/java/org/spongycastle/crypto/KeyParser.java
blob: 7992ff86527c3b9cbb92abc10837dd59d97ae34a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package org.spongycastle.crypto;

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

import org.spongycastle.crypto.params.AsymmetricKeyParameter;

public interface KeyParser
{
    AsymmetricKeyParameter readKey(InputStream stream)
        throws IOException;
}