Skip to content

Normalize all constants in CipherStrings as public final static #146

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 12, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Expand Up @@ -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";
Expand Down