aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/pgp/UncachedSecretKey.java
blob: 82224c6cf340762f0bb93f1e27b7fc3945845d35 (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
25
26
package org.sufficientlysecure.keychain.pgp;

import org.spongycastle.openpgp.PGPSecretKey;

import java.io.IOException;
import java.io.OutputStream;

public class UncachedSecretKey extends UncachedPublicKey {

    final PGPSecretKey mSecretKey;

    public UncachedSecretKey(PGPSecretKey secretKey) {
        super(secretKey.getPublicKey());
        mSecretKey = secretKey;
    }

    @Deprecated
    public PGPSecretKey getSecretKeyExternal() {
        return mSecretKey;
    }

    public void encodeSecretKey(OutputStream os) throws IOException {
        mSecretKey.encode(os);
    }

}