summaryrefslogtreecommitdiff
path: root/bcprov/src/main/java/org/bouncycastle/jce/spec/RepeatedSecretKeySpec.java
blob: 2a7ceb53400fac6a272a95227c0ced8b7faa434e (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
27
28
29
30
31
32
33
34
package org.bouncycastle.jce.spec;


import javax.crypto.SecretKey;

/**
 * A simple object to indicate that a symmetric cipher should reuse the
 * last key provided.
 */
public class RepeatedSecretKeySpec
    implements SecretKey
{
    private String algorithm;

    public RepeatedSecretKeySpec(String algorithm)
    {
        this.algorithm = algorithm;
    }

    public String getAlgorithm()
    {
        return algorithm;
    }

    public String getFormat()
    {
        return null;
    }

    public byte[] getEncoded()
    {
        return null;
    }
}