- Custom fork of QZ Tray 2.2.x with certificate validation bypassed - Implemented pairing key (HMAC) authentication as replacement - Modified files: PrintSocketClient.java (certificate check disabled) - New files: PairingAuth.java, PairingConfigDialog.java - Excluded build artifacts (out/, lib/javafx*) from repository - Library JARs included for dependency management
13 lines
455 B
Java
13 lines
455 B
Java
package qz.auth;
|
|
|
|
/**
|
|
* Created by Tres on 3/3/2015.
|
|
*/
|
|
public class X509Constants {
|
|
public static final String BEGIN_CERT = "-----BEGIN CERTIFICATE-----";
|
|
public static final String END_CERT = "-----END CERTIFICATE-----";
|
|
public static final String INTERMEDIATE_CERT = "--START INTERMEDIATE CERT--";
|
|
public static final String BEGIN_CRL = "-----BEGIN X509 CRL-----";
|
|
public static final String END_CRL = "-----END X509 CRL-----";
|
|
}
|