74084389
submission
bmearns writes:
Amazon announced today a new library called "s2n", an open source implementation of SSL/TLS, the cryptographic security protocols behind HTTPS, SSH, SFTP, secure SMTP, and many others. Weighing in at about 6k lines of code, it's just a little more than 1% the size of OpenSSL, which is really good news in terms of security auditing and testing. OpenSSL isn't going away, and Amazon has made clear that they will continue to support it. Notably, s2n does not provide all the additional cryptographic functions that OpenSSL provides in libcrypto, it only provides the SSL/TLS functions. Further more, it implements a relatively small subset of SSL/TLS features compared to OpenSSL.
56846829
submission
bmearns writes:
Over the past few weeks we've been hearing a lot about a possible breakthrough in decoding the infamous Voynich manuscript, made by a team of botanists who suggested that the plants depicted in the manuscrit may have been from the New World and the mysterious writing could be a form of an Aztec language. But the latest development comes from linguist Stephen Bax, of Bedfordshire University, who believes he has identified some proper names (including of the constellation "Taurus") in the manuscript and is using these as a crib to begin deciphering the rest of the text, which he believes comes from the near east or Asia.
55770583
submission
bmearns writes:
The Voynich Manuscript is every geek's favorite "indecipherable" illuminated manuscript. It's bizarre depictions of strange plants and animals, astrological diagrams, and hordes of tiny naked women bathing in a system of interconnected tubs that bare an uneasy resemblance to the human digestive system, have inspired numerous essays and doctoral theses', plus one XKCD comic. Now a team of botanists (yes, botanists) may have uncovered an important clue as to its origin and content, by identifying several of the plants and animals depicted, and linking them to the Spanish territories in Central America.
48398473
submission
bmearns writes:
I have some simple plain-text files (e.g., account information) that I want to print on paper and store in my firebox as a backup to my backup. What's the best way to encode the data for print so that it can later be restored to digital form? I've considered just printing it as text and using OCR to recover it. The upsides are that it's easy and I can even access the information without a computer if necessary. Downsides are data density, no encryption, no error correction, and how well does OCR work, anyway? Another option is printing 2D barcodes. Upsides are density, error correction, I could encrypt the data before printing. Downsides are that I'll need to split it up into multiple barcodes due to maximum capacity of popular barcode formats, and I can't access the data without a computer. Did I miss any options? What do slashdotters suggest?