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

org.bouncycastle.tls.crypto.CryptoSignatureAlgorithm Maven / Gradle / Ivy

Go to download

The Bouncy Castle Java APIs for the TLS, including a JSSE provider. The APIs are designed primarily to be used in conjunction with the BC FIPS provider. The APIs may also be used with other providers although if being used in a FIPS context it is the responsibility of the user to ensure that any other providers used are FIPS certified and used appropriately.

There is a newer version: 2.0.19
Show newest version
package org.bouncycastle.tls.crypto;

public abstract class CryptoSignatureAlgorithm
{
    public static final int rsa = 1;
    public static final int dsa = 2;
    public static final int ecdsa = 3;
    public static final int rsa_pss_rsae_sha256 = 4;
    public static final int rsa_pss_rsae_sha384 = 5;
    public static final int rsa_pss_rsae_sha512 = 6;
    public static final int ed25519 = 7;
    public static final int ed448 = 8;
    public static final int rsa_pss_pss_sha256 = 9;
    public static final int rsa_pss_pss_sha384 = 10;
    public static final int rsa_pss_pss_sha512 = 11;
    public static final int ecdsa_brainpoolP256r1tls13_sha256 = 26;
    public static final int ecdsa_brainpoolP384r1tls13_sha384 = 27;
    public static final int ecdsa_brainpoolP512r1tls13_sha512 = 28;
    public static final int gostr34102012_256 = 64;
    public static final int gostr34102012_512 = 65;
    public static final int sm2 = 200;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy