keybase / triplesec

Triple Security for the browser and Node.js
https://keybase.io/triplesec
MIT License
399 stars 47 forks source link

404 error on browser version #43

Closed davisable closed 5 years ago

davisable commented 9 years ago

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)

malgorithms commented 9 years ago

Ahh, thanks, this should be fixed tomorrow. The latest version is 3.0.14, FYI:

https://github.com/keybase/triplesec/tree/master/rel

SparkDustJoe commented 9 years ago

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.
}
gburtini commented 7 years ago

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)