~brian-thomason/+junk/bouncycastle

« back to all changes in this revision

Viewing changes to jdk1.1/java/security/spec/X509EncodedKeySpec.java

  • Committer: Brian Thomason
  • Date: 2011-12-20 17:20:32 UTC
  • Revision ID: brian.thomason@canonical.com-20111220172032-rdtm13jgdxtksacr
Initial import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
package java.security.spec;
 
3
 
 
4
public class X509EncodedKeySpec extends EncodedKeySpec
 
5
{
 
6
    public X509EncodedKeySpec(byte[] encodedKey)
 
7
    {
 
8
        super(encodedKey);
 
9
    }
 
10
 
 
11
    public byte[] getEncoded()
 
12
    {
 
13
        return super.getEncoded();
 
14
    }
 
15
 
 
16
    public final String getFormat()
 
17
    {
 
18
        return "X.509";
 
19
    }
 
20
}