Skip to content

Commit

Permalink
Keep only the code related to signing in the PEFile class
Browse files Browse the repository at this point in the history
  • Loading branch information
ebourg committed Mar 6, 2024
1 parent f20a977 commit 7c54a68
Show file tree
Hide file tree
Showing 15 changed files with 13 additions and 1,134 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ See https://ebourg.github.io/jsign for more information.
* The APPX/MSIX bundles are now signed with the correct Authenticode UUID
* The error message displayed when the password of a PKCS#12 keystore is missing has been fixed
* The log4j configuration warning displayed when signing a MSI file has been fixed (contributed by Pascal Davoust)
* API changes:
* The PEFile class has been refactored to keep only the methods related to signing

#### Version 6.0 (2024-01-17)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
* @author Emmanuel Bourg
* @since 1.3
*/
public class CertificateTableEntry {
class CertificateTableEntry {

private int size;
private int revision;
Expand Down
2 changes: 1 addition & 1 deletion jsign-core/src/main/java/net/jsign/pe/CertificateType.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
* @author Emmanuel Bourg
* @since 1.3
*/
public enum CertificateType {
enum CertificateType {

/** X.509 Certificate (not supported) */
X509(0x0001),
Expand Down
2 changes: 1 addition & 1 deletion jsign-core/src/main/java/net/jsign/pe/DataDirectory.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
* @author Emmanuel Bourg
* @since 1.0
*/
public class DataDirectory {
class DataDirectory {

private final PEFile peFile;
private final int index;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
* @author Emmanuel Bourg
* @since 1.0
*/
public enum DataDirectoryType {
enum DataDirectoryType {

/** The export table */
EXPORT_TABLE,
Expand Down
108 changes: 0 additions & 108 deletions jsign-core/src/main/java/net/jsign/pe/MachineType.java

This file was deleted.

Loading

0 comments on commit 7c54a68

Please sign in to comment.