Add custom QZ Tray fork with pairing key authentication
- 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
This commit is contained in:
12
tray/src/qz/auth/X509Constants.java
Normal file
12
tray/src/qz/auth/X509Constants.java
Normal file
@@ -0,0 +1,12 @@
|
||||
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-----";
|
||||
}
|
||||
Reference in New Issue
Block a user