All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bouncycastle.jce.spec.OpenSSHPublicKeySpec Maven / Gradle / Ivy

Go to download

The Bouncy Castle Java APIs for CMS, PKCS, EAC, TSP, CMP, CRMF, OCSP, and certificate generation. This jar contains APIs for JDK 1.5 and up. The APIs can be used in conjunction with a JCE/JCA provider such as the one provided with the Bouncy Castle Cryptography APIs.

There is a newer version: 1.2.2.1-jre17
Show newest version
package org.bouncycastle.jce.spec;

/**
 * Holds an OpenSSH encoded public key.
 * @deprecated use org.bouncycastle.jcajce.spec.OpenSSHPublicKeySpec
 */
public class OpenSSHPublicKeySpec
    extends org.bouncycastle.jcajce.spec.OpenSSHPublicKeySpec
{
    /**
     * Construct and instance and determine the OpenSSH public key type.
     * The current types are ssh-rsa, ssh-ed25519, ssh-dss and ecdsa-*
     * 

* It does not validate the key beyond identifying the type. * * @param encodedKey */ public OpenSSHPublicKeySpec(byte[] encodedKey) { super(encodedKey); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy