Closed davisable closed 5 years ago
Ahh, thanks, this should be fixed tomorrow. The latest version is 3.0.14, FYI:
The demo on the page is working again. And thanks for the link to my C# version. If you guys make a V4 or do drastic code changes, just open an issue on my repository and I'll address it. :)
byte[] PASSPHRASE = new System.Text.UTF8Encoding().GetBytes("Password string goes here.");
byte[] cipherTextBytes = TripleSecManaged.V3.Encrypt(SOURCE, PASSPHRASE);
byte[] plainTextBytes = null;
bool didItWork = TripleSecManaged.V3.TryDecrypt(cipherTextBytes, PASSPHRASE, out plainTextBytes);
if(didItWork)
{
// Do your work on the plainTextBytes here.
}
else
{
// plainTextBytes will be null
// Bad passphrase maybe? It didn't work, tell the user.
}
This has also been fixed for a year, recommend close.
@maxtaco - sorry if I am annoying you tagging you in these things, is there someone else I should tag to to clean up these issues? (or perhaps you don't want them cleaned up at all... which would be a little disappointing as I think this is a really cool project, it just needs someone to show it a little love)
The browser version linked in the Installation section from the homepage ( https://keybase.io/triplesec/ ) leads to a 404 page not found. Link is:
https://keybase.io/triplesec/rel/triplesec-3.0.0-min.js
This is also causing the page's "In-Browser Magical Demo" to not work (since it requires the file above)