-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update known information for KeePass to version 2.57
- Loading branch information
Showing
2 changed files
with
11 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,13 +47,13 @@ public KeePass(bool autoGetNewer) | |
/// <summary> | ||
/// publisher of signed binaries | ||
/// </summary> | ||
private const string publisherX509 = "[email protected], CN=\"Open Source Developer, Dominik Reichl\", O=Open Source Developer, L=Metzingen, C=DE"; | ||
private const string publisherX509 = "CN=\"Open Source Developer, Dominik Reichl\", O=Open Source Developer, L=Metzingen, S=Baden-Württemberg, C=DE"; | ||
|
||
|
||
/// <summary> | ||
/// expiration date of certificate | ||
/// </summary> | ||
private static readonly DateTime certificateExpiration = new(2024, 2, 6, 8, 28, 53, DateTimeKind.Utc); | ||
private static readonly DateTime certificateExpiration = new(2025, 2, 6, 15, 2, 0, DateTimeKind.Utc); | ||
|
||
|
||
/// <summary> | ||
|
@@ -65,13 +65,13 @@ public override AvailableSoftware knownInfo() | |
{ | ||
var signature = new Signature(publisherX509, certificateExpiration); | ||
return new AvailableSoftware("KeePass", | ||
"2.56", | ||
"2.57", | ||
"^KeePass Password Safe [2-9]\\.[0-9]{2}(\\.[0-9]+)?$", | ||
null, | ||
new InstallInfoExe( | ||
"https://netcologne.dl.sourceforge.net/project/keepass/KeePass%202.x/2.56/KeePass-2.56-Setup.exe", | ||
"https://netcologne.dl.sourceforge.net/project/keepass/KeePass%202.x/2.57/KeePass-2.57-Setup.exe", | ||
HashAlgorithm.SHA256, | ||
"92529DC0 E6449ECA 21688601 02045550 54628192 17B8E8D5 1F6E7B1D D05A69EF", | ||
"EA53F7F9 44FADA95 0CD7BB15 4DEB0781 23A357B7 BC5E2484 851762B3 552EB48B", | ||
signature, | ||
"/VERYSILENT"), | ||
// There is no 64 bit installer yet. | ||
|