Skip to main content

Posts

Showing posts with the label packages

SSL cIpher suits and what they mean?

I'm sure you have wondered at all those cipher suits SSL supports and watched in wonder as to what the hell does all those weird abbreviation mean. To find out what all cipher suits your openssl installation supports try, $ openssl ciphers -v ECDHE-RSA-AES256-GCM-SHA384 TLSv1.2 Kx=ECDH     Au=RSA  Enc=AESGCM(256) Mac=AEAD ECDHE-ECDSA-AES256-GCM-SHA384 TLSv1.2 Kx=ECDH     Au=ECDSA Enc=AESGCM(256) Mac=AEAD ECDHE-RSA-AES256-SHA384 TLSv1.2 Kx=ECDH     Au=RSA  Enc=AES(256)  Mac=SHA384 ECDHE-ECDSA-AES256-SHA384 TLSv1.2 Kx=ECDH     Au=ECDSA Enc=AES(256)  Mac=SHA384 ECDHE-RSA-AES256-SHA    SSLv3 Kx=ECDH     Au=RSA  Enc=AES(256)  Mac=SHA1 ECDHE-ECDSA-AES256-SHA  SSLv3 Kx=ECDH     Au=ECDSA Enc=AES(256)  Mac=SHA1 SRP-DSS-AES-256-CBC-SHA SSLv3 Kx=SRP      Au=DSS  Enc=AES(256)  Mac=SHA1 S...

LaTeX: A typesetters Swiss Army Knife

LaTeX is a tool for typesetting virtually anything, be it book, article, letters or journal papers. LaTeX can even be used to take class notes, when your professor uses lots of complex mathematical formulae. My association with LaTeX stated a few months ago when I was troubled with the irreproducibility of my articles. Microsoft Word or even Open Office have trouble with keeping up with the formatting of article. Then I encountered LaTeX. It is such an amazing tool, you can produce camera-ready copies of your paper and thesis in minutes. LaTeX has a few advantages over traditional WYSIWYG typesetters LaTeX gives you complete freedom with what to do with your document LaTeX, as I said provides you with camera ready quality prints. LaTeX is extensible, means you can create you own template to format documents. Once you have designed that, you don't have to do anything to typeset any other document. LaTeX will take care of it! But there are a few problems too- To learn LaT...