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:
2025-10-02 02:27:45 +03:00
parent 755400a269
commit c7266c32ee
444 changed files with 63195 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
package qz.exception;
public class InvalidRawImageException extends Exception {
public InvalidRawImageException(String msg) {
super(msg);
}
public InvalidRawImageException(String msg, Throwable cause) {
super(msg, cause);
}
}

View File

@@ -0,0 +1,3 @@
package qz.exception;
public class MissingArgException extends Exception {}

View File

@@ -0,0 +1,10 @@
package qz.exception;
public class NullCommandException extends javax.print.PrintException {
public NullCommandException() {
super();
}
public NullCommandException(String msg) {
super(msg);
}
}

View File

@@ -0,0 +1,7 @@
package qz.exception;
public class NullPrintServiceException extends javax.print.PrintException {
public NullPrintServiceException(String msg) {
super(msg);
}
}