Hands-On-Cryptography-with-Python-master

所属分类:加密解密
开发工具:Python
文件大小:15KB
下载次数:0
上传日期:2019-11-25 00:44:18
上 传 者shahzad8092
说明:  cryptography and its applications

文件列表:
Chapter01 (0, 2018-07-26)
Chapter01\base64-chal (18, 2018-07-26)
Chapter01\base64-loop.py (95, 2018-07-26)
Chapter01\caesar1.py (313, 2018-07-26)
Chapter01\caesar2.py (318, 2018-07-26)
Chapter01\caesar3.py (357, 2018-07-26)
Chapter01\caesar4.py (323, 2018-07-26)
Chapter01\caesar5.py (287, 2018-07-26)
Chapter01\hello.py (14, 2018-07-26)
Chapter01\rot13.py (286, 2018-07-26)
Chapter01\xor1.py (93, 2018-07-26)
Chapter01\xor2.py (184, 2018-07-26)
Chapter01\xor2a.py (234, 2018-07-26)
Chapter01\xor3.py (189, 2018-07-26)
Chapter01\xor4.py (229, 2018-07-26)
Chapter01\xor5.py (303, 2018-07-26)
Chapter02 (0, 2018-07-26)
Chapter02\chal1a.py (129, 2018-07-26)
Chapter02\chal1b-solution.py (274, 2018-07-26)
Chapter02\chal1c.py (392, 2018-07-26)
Chapter02\chal1d.py (515, 2018-07-26)
Chapter02\chal1e.py (607, 2018-07-26)
Chapter02\chal1f-7digit-solution.py (739, 2018-07-26)
Chapter02\chal2-5-prep.py (205, 2018-07-26)
Chapter02\chal2-5a-solution.py (203, 2018-07-26)
Chapter02\chal2-5b-solution.py (256, 2018-07-26)
Chapter02\chal2-6-prep.py (145, 2018-07-26)
Chapter02\chal2-6-solution.py (205, 2018-07-26)
Chapter03 (0, 2018-07-26)
Chapter03\3-6-Chal2-Solution.txt (4999, 2018-07-26)
Chapter03\pador-code.htm (627, 2018-07-26)
Chapter03\pador.py (647, 2018-07-26)
LICENSE (1062, 2018-07-26)

# Hands-On Cryptography with Python Hands-On Cryptography with Python This is the code repository for [Hands-On Cryptography with Python](https://www.packtpub.com/networking-and-servers/hands-cryptography-python), published by Packt. **Leverage the power of Python to encrypt and decrypt data** ## What is this book about? Cryptography is essential for protecting sensitive information, but it is often performed inadequately or incorrectly. This book covers the following exciting features: * Protect data with encryption and hashing * Explore and compare various encryption methods * Encrypt data using the Caesar Cipher technique * Make hashes and crack them * Learn how to use three NIST-recommended systems: AES, SHA, and RSA If you feel this book is for you, get your [copy](https://www.amazon.com/dp/1789534445) today! https://www.packtpub.com/ ## Instructions and Navigations All of the code is organized into folders. For example, Chapter01. The code will look like the following: ``` alpha = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" str_in = raw_input("Enter message, like HELLO: ") n = len(str_in) str_out = "" for i in range(n): c = str_in[i] loc = alpha.find(c) print i, c, loc, newloc = loc + 3 str_out += alpha[newloc] print newloc, str_out print "Obfuscated version:", str_out ``` **Following is what you need for this book:** Hands-On Cryptography with Python is for security professionals who want to learn to encrypt and evaluate data, and compare different encryption methods. With the following software and hardware list you can run all code files present in the book (Chapter 1-3). ### Software and Hardware List | Chapter | Software required | OS required | | -------- | ------------------------------------| -----------------------------------| | 1-3 | Python (latest version) | macOS or Ubuntu/Linux | We also provide a PDF file that has color images of the screenshots/diagrams used in this book. [Click here to download it](https://www.packtpub.com/sites/default/files/downloads/HandsOnCryptographywithPython_ColorImages.pdf). ### Related products * Python Penetration Testing Cookbook [[Packt]](https://www.packtpub.com/networking-and-servers/python-penetration-testing-cookbook?utm_source=repository&utm_medium=github&utm_campaign=repository&utm_term=9781784399771) [[Amazon]](https://www.amazon.com/dp/1784399779) * Python For Offensive PenTest [[Packt]](https://www.packtpub.com/networking-and-servers/python-offensive-pentest?utm_source=repository&utm_medium=github&utm_campaign=repository&utm_term=9781788838979) [[Amazon]](https://www.amazon.com/dp/1788838971) ## Get to Know the Author **Sam Bowne** has been teaching computer networking and security classes at City College of San Francisco since 2000. He has given talks and hands-on training at DEFCON, HOPE, B-Sides SF, B-Sides LV, BayThreat, LayerOne, Toorcon, and many other schools and conferences. He has done his PhD and CISSP. He is a DEF CON Black-Badge co-winner. ### Suggestions and Feedback [Click here](https://docs.google.com/forms/d/e/1FAIpQLSdy7dATC6QmEL81FIUuymZ0Wy9vH1jHkvpY57OiMeKGqib_Ow/viewform) if you have any feedback or suggestions.

近期下载者

相关文件


收藏者