Package org.bouncycastle.jcajce.spec
Class OpenSSHPrivateKeySpec
- java.lang.Object
 - 
- java.security.spec.EncodedKeySpec
 - 
- org.bouncycastle.jcajce.spec.OpenSSHPrivateKeySpec
 
 
 
- 
- All Implemented Interfaces:
 java.security.spec.KeySpec
- Direct Known Subclasses:
 OpenSSHPrivateKeySpec
public class OpenSSHPrivateKeySpec extends java.security.spec.EncodedKeySpecOpenSSHPrivateKeySpec holds and encoded OpenSSH private key. The format of the key can be either ASN.1 or OpenSSH. 
- 
- 
Constructor Summary
Constructors Constructor Description OpenSSHPrivateKeySpec(byte[] encodedKey)Accept an encoded key and determine the format. 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetFormat()Return the format, either OpenSSH for the OpenSSH propriety format or ASN.1. 
 - 
 
- 
- 
Constructor Detail
- 
OpenSSHPrivateKeySpec
public OpenSSHPrivateKeySpec(byte[] encodedKey)
Accept an encoded key and determine the format.The encoded key should be the Base64 decoded blob between the "---BEGIN and ---END" markers. This constructor will endeavour to find the OpenSSH format magic value. If it can not then it will default to ASN.1. It does not attempt to validate the ASN.1
Example: OpenSSHPrivateKeySpec privSpec = new OpenSSHPrivateKeySpec(rawPriv);
KeyFactory kpf = KeyFactory.getInstance("RSA", "BC"); PrivateKey prk = kpf.generatePrivate(privSpec);
OpenSSHPrivateKeySpec rcPrivateSpec = kpf.getKeySpec(prk, OpenSSHPrivateKeySpec.class);
- Parameters:
 encodedKey- The encoded key.
 
 - 
 
 -