This repository has been archived by the owner on Jan 24, 2024. It is now read-only.
forked from 0x49D1/WinPass
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make the master password decryption about 355% faster by using the Bo…
…uncy Castle library Tested on a Lumia 640 with a debug build for a db with 5 000 000 rounds : - 03:38 with the previous method - 01:01 with Bouncy Castle Benchmarked on x86 (100 000 rounds, test run 100 times) : - 47s with the original WinPass method - 10s with the KeePass desktop client method - 8s with Bouncy Castle
- Loading branch information
Showing
3 changed files
with
15 additions
and
11 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
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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="BouncyCastle" version="1.8.1" targetFramework="wp81" /> | ||
<package id="SharpZipLib.Portable" version="0.86.0.0003" targetFramework="wp81" /> | ||
</packages> |