Skip to content

Commit

Permalink
normalize all constants in CipherStrings as public (#146)
Browse files Browse the repository at this point in the history
drcapulet authored and kares committed Oct 12, 2017
1 parent 617ca56 commit ec307fa
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/main/java/org/jruby/ext/openssl/CipherStrings.java
Original file line number Diff line number Diff line change
@@ -320,23 +320,23 @@ public class CipherStrings {
public final static long TLS1_CK_ECDHE_ECDSA_WITH_NULL_SHA = 0x0300C006;
public final static long TLS1_CK_ECDHE_ECDSA_WITH_RC4_128_SHA = 0x0300C007;
public final static long TLS1_CK_ECDHE_ECDSA_WITH_DES_192_CBC3_SHA = 0x0300C008;
final static long TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA = 0x0300C009;
final static long TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA = 0x0300C00A;
public final static long TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA = 0x0300C009;
public final static long TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA = 0x0300C00A;
public final static long TLS1_CK_ECDH_RSA_WITH_NULL_SHA = 0x0300C00B;
public final static long TLS1_CK_ECDH_RSA_WITH_RC4_128_SHA = 0x0300C00C;
public final static long TLS1_CK_ECDH_RSA_WITH_DES_192_CBC3_SHA = 0x0300C00D;
final static long TLS_ECDH_RSA_WITH_AES_128_CBC_SHA = 0x0300C00E;
final static long TLS_ECDH_RSA_WITH_AES_256_CBC_SHA = 0x0300C00F;
public final static long TLS_ECDH_RSA_WITH_AES_128_CBC_SHA = 0x0300C00E;
public final static long TLS_ECDH_RSA_WITH_AES_256_CBC_SHA = 0x0300C00F;
public final static long TLS1_CK_ECDHE_RSA_WITH_NULL_SHA = 0x0300C010;
public final static long TLS1_CK_ECDHE_RSA_WITH_RC4_128_SHA = 0x0300C011;
public final static long TLS1_CK_ECDHE_RSA_WITH_DES_192_CBC3_SHA = 0x0300C012;
final static long TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA = 0x0300C013;
final static long TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA = 0x0300C014;
public final static long TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA = 0x0300C013;
public final static long TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA = 0x0300C014;
public final static long TLS1_CK_ECDH_anon_WITH_NULL_SHA = 0x0300C015;
final static long TLS_ECDH_anon_WITH_RC4_128_SHA = 0x0300C016;
final static long TLS_ECDH_anon_WITH_DES_192_CBC3_SHA = 0x0300C017;
final static long TLS_ECDH_anon_WITH_AES_128_CBC_SHA = 0x0300C018;
final static long TLS_ECDH_anon_WITH_AES_256_CBC_SHA = 0x0300C019;
public final static long TLS_ECDH_anon_WITH_RC4_128_SHA = 0x0300C016;
public final static long TLS_ECDH_anon_WITH_DES_192_CBC3_SHA = 0x0300C017;
public final static long TLS_ECDH_anon_WITH_AES_128_CBC_SHA = 0x0300C018;
public final static long TLS_ECDH_anon_WITH_AES_256_CBC_SHA = 0x0300C019;

public final static String TLS1_TXT_RSA_EXPORT1024_WITH_RC4_56_MD5 = "EXP1024-RC4-MD5";
public final static String TLS1_TXT_RSA_EXPORT1024_WITH_RC2_CBC_56_MD5 = "EXP1024-RC2-CBC-MD5";

0 comments on commit ec307fa

Please sign in to comment.