Big News Dec. 12, 2013 - TripleSec for Python!
Versions 2.6, 2.7, and 3.3+ supported.
TripleSec is a simple to use, open-source triple-paranoid symmetric encryption library for Python, Node.js, and even the browser. It encrypts data with Salsa 20, AES, and Twofish, so that a compromise of one or two of the ciphers will not expose the secret.
Of course, encryption is only part of the story. TripleSec also: derives keys with scrypt to defend against password-cracking and rainbow tables; authenticates with HMAC to protect against adaptive chosen-ciphertext attacks; and in the JavaScript version supplements the native entropy sources for fear they are weak.
Let TripleSec into your life, today.
Encryption is performed by the encrypt
function. In JavaScript, it periodically yields
control to not lock up your CPU, and finally it
calls back with (err, buffer)
.
triplesec.encrypt ({ data: new triplesec.Buffer('Pssst. I believe I love you.'), key: new triplesec.Buffer('top-secret-pw'), progress_hook: function (obj) { /* ... */ } }, function(err, buff) { if (! err) { var ciphertext = buff.toString('hex'); } });
triplesec.encrypt data: new triplesec.Buffer 'Pssst. I believe I love you.' key: new triplesec.Buffer 'top-secret-pw' progress_hook: ({what, i, total}) -> # ... , (err, buff) -> ciphertext = buff.toString 'hex' unless err
import triplesec import binascii enc = triplesec.encrypt(b"Pssst. I believe I love you.", b'top-secret-pw') # optional hex conversion ciphertext = binascii.hexlify(enc)
TripleSec's decrypt
is painless.
triplesec.decrypt ({ data: new triplesec.Buffer(ciphertext, "hex"), key: new triplesec.Buffer('top-secret-pw'), progress_hook: function (obj) { /* ... */ } }, function (err, buff) { if (! err) { console.log(buff.toString()); } }); var plaintext = buff.toString();
triplesec.decrypt data: new triplesec.Buffer ciphertext, 'hex' key: new triplesec.Buffer 'top-secret-pw' progress_hook: ({what, i, total}) -> # ... , (err, buff) -> console.log buff.toString() unless err
# next line necessary if coming from hex enc = binascii.unhexlify(ciphertext) plaintext = triplesec.decrypt(enc, b'top-secret-pw').decode()
If you pip install TripleSec
to get the python
version of TripleSec, you'll be pleasantly surprised to discover
the triplesec
command line program. For usage info,
run it without any arguments. Or read the python-triplesec
page on github.
Output is the xor of 4 values, shown as rows below. The columns in the diagram are aligned. For more information, read on.
The TripleSec library encrypts data in four steps:
Salsa20. The innermost cipher is a Salsa20 variant called XSalsa20. Like Salsa20, XSalsa20 is a stream cipher, meaning it can encrypt input texts of arbitrary length without a a block cipher mode of operation. XSalsa20 takes a 192-bit nonce rather than Salsa20's 64-bit nonce, but is provably as secure. Given a key, and an IV, XSalsa20 generates a random pad, which is then XOR'ed with the input message. This step of the algorithm outputs the concatenation of the IV and the result of the XOR operation.
3
); the salt used in key derivation; and
the output of the AES stage of the cascading encryption above. TripleSec "macs" with a concatenation of two HMACs:
HMAC-SHA-512, and HMAC-SHA3, each run with a seperate key.
The final output is a concatenation of:
the header; the salt; the signature; and the outermost ciphertext.
Though this is not the exact composition suggested by Schneier in Applied Cryptography (Section 15.8 in the Second Edition), it is close. TripleSec never uses the output of one block cipher as input into the next, which theoretically might allow a crack of one cipher to be used to crack another. Rather, by merit of CTR mode, the three ciphers run on statistically independent IVs, so a crack of one will not spread up or down the chain. The TripleSec technique takes one futher step not suggested by Schneier, which is to protect the inner IVs with the outer encryption algorithms, and only exposing the outermost IV in the clear. Though we can't prove this makes the scheme more secure, it seems like a reasonable idea: why reveal cipher inputs if we don't have to? Finally, this algorithm has the added advantage that the output ciphertext only increases by a constant additive term (i.e., the lengths of the header, the salt, the HMAC and the three IVs). Schneier's technique inflates ciphertexts by a factor N, where N is the number of independent ciphers used.
Similarly, TripleSec protects against a break in HMAC-SHA-512 by always combining it with an HMAC based on Keccak hash algorithm (soon to become the SHA-3 standard). TripleSec concatenates the two results to preserve collision-resistance. Unlike the suspect compositions in TLS and SSH, this simple composition doesn't require either SHA-512 or SHA-3 to be strongly collision-resistant; rather, just weakly collision-resistant in line with the original construction. See Anja Lehmann's dissertation for more details on combinations of hashes.
User data uploaded to a remote cloud-hosted server is nearly impossible to delete, so any encryption scheme has to be future-proof. The amount of time spent encrypting reasonably-sized plaintexts pales in comparison to (1) scrypt, which is intentionally slow; and (2) how long it will sit on the server. Why not go the extra mile?
It is a wrapper around either Node.js's Buffer or a browser equivalent. When you generate encrypted data, you can use the output buffer however you like. In our above examples, we converted to and from hex strings.
TripleSec first derives a random seed from a variety of sources:
from window.crypto.getRandomValues
in the browser; from crypto.rng
in Node.js;
from the millisecond field of your system time; and finally, from more-entropy, which counts how many floating-point-heavy computations can be done in a set amount of time.
This data is then stirred together and becomes the seed for HMAC_DRBG, whose HMAC is the XOR of HMAC-SHA-512 and HMAC-SHA3.
You may alternatively provide your own random number generator for encryption. Pass an rng
function
along with your other data. This function should take two
arguments: the number of bytes needed,
and a callback that you fire with a triplesec.WordArray
containing the random data. You can create a WordArray
from a triplesec.Buffer
by simply calling WordArray.from_buffer(buffer)
.
scrypt takes as input a salt in addition to a secret passphrase,
to prevent an adversary from cracking many TripleSec-encrypted ciphtertexts
in parallel. TripleSec salts passphrases with a
random 16-byte sequence that's included with the ciphertext. By
default, TripleSec's triplesec.Encryptor
object
uses the same salt until you call triplesec.Encryptor.resalt
.
The advantage of salt reuse is that it's faster, since it avoids the intentionally
slow scrypt step. On the other hand, an adversary can tell
if two different ciphertexts were encrypted in the same session if
the salt is not reset.
Yes, using HTML5 features you can access file data without uploading it to a server. We're also likely to add an additional interface to the encrypt and decrypt functions, where you provide a data function instead of a single Buffer, for large data performance. TripleSec was planned with this feature in mind, and it'll be easy to use.
If you implement a file-hosting service using TripleSec, let us know, and we'll link to it in the "Who's Using It" section below.
There are lots of great JS Crypto libraries out there, and we've borrowed from some to build TripleSec. But combining cryptographic primitives to achieve IND-CCA2 security involves many fussy decisions and much avoidance of implementation pitfalls. We want all to have access to higher-level primitives that can be applied with little thought. Hence TripleSec!
We don't have any exact proof of security for a cascade of block ciphers in CTR mode. But we're pretty sure TripleSec's encryption can only be broken if all three algorithms are broken. We furthmore think that TripleSec is non-malleable (and hence IND-CCA2 secure) due to the HMAC step. Let us know if there's a simple proof (or a citation) that we missed.
n + 208. The additive term is broken down as:
[0x1c94d7de, 0x3]
).
In the browser, you can visit our-browser based
test page.
If you have Node.js on your system, you can clone the
github repo
and run make test
. We've checked all algorithms
against known test vectors, with the exception of the XSalsa20
extension to Salsa20, which doesn't have published test vectors.
For the XSalsa20 extension, we check outputs against the official
Go Language Crypto library. We still check the underlying Salsa20 core against published test vectors.
There are well-read
articles on this topic, but we don't agree
with a lot of the rhetoric. Of course you should deliver your Crypto
libraries over TLS, and nowadays, that's accepted and common.
And maybe JavaScript isn't the most convenient language to
write Crypto code in, but it still can express all the necessary primitives.
Browsers have good CSPRNGs now,
and even if you don't trust Apple and/or Linux and/or Chrome,
we have some good workarounds (see above). True, one needs to
take care not to overflow 32-bits, but with a robust testing
suite against known test vectors, one can rule out this class
of bugs. Of course one shouldn't allow untrusted libraries to
trample one's trusted primitives, but that's true of any
language (see LD_PRELOAD
attacks against
libraries written in C). A shortcoming we encountered
in writing TripleSec is that
JavaScript doesn't offer desctructors, so
it's incovenient to scrub buffers properly.
TripleSec has taken care to do this job manually. If
you spot some unscrubbed buffers, please let us know.
We are as worried as anyone else about XSS attacks, CSRF attacks and the ability of third party code to tamper with vetted Crypto code. But these attacks and the quality of Crypto libraries are othogonal concerns. Those sites with high quality JS libraries should feel confident encrypting data with TripleSec. Those with lots of unvetted third party JS code won't gain much.
Not yet, it's in progress. The current interface requires the file to be fully loaded into memory before it's encrypted, but the current file format is compatible with streaming (with a single seek to write the HMACs).
We welcome ports, and we'll list such projects here. The TripleSec checkout has test vectors which your implementation should match.
For starters, we are (Max Krohn & Chris Coyne), co-founders of OkCupid. We're working on an unrelated site now, and TripleSec will be used to encrypt our users' keys.
If you use TripleSec for something public, please contact us. We'll mention you here.
Here are some ideas, in case you're feeling ambitious:
Please! Above all else, we encourage review of both our algorithm and the source code.
Our email addresses are right here. Please enter the password peppermint patty
in the demo box,
and this as the ciphertext:
1c94d7de000000032b2d6b9e9de7821edce4830ac7132b41a7c762218ec84f4c965bde7c327b31eace1b9b46fc3fdadcf7ac4ce39df871675b570a8cabdfdb7ae62fe0fc04bd5859dd430d530bbf8ba6083d070f5a9e6ed6c76c4d6dd61c810036c750f4f7a9c350211b4d0b810f10cb36429508ef42a4400c5461af1f5f3b207ceb206098d7e1d0081dd4135ce6f6063000b4530ad4067971059b300cec74b73570932004d92a6cb97e67d68f3c73862afa2b16b31ddae020cc66ae45ad0c95464b3ffd0d422c826d6817c7dc0a0c7d18b3ff992c0efb3a0448e053304a7d6e3abe465349ccb1a6183f790c412803c2e75d8773311e553a7ec7f3704dc19c6c4c1db21445d8bd519b7e4be49f63d7fefeee0dae40e89def3b9367d4b746f930142ee818e977d0d975679ebd8efda6c16fc34ec876090f169ced384d9bf2d64ae447eae6c47f86b7fc79b25c