Security and Cryptography

suggest change

Introduction

Python, being one of the most popular languages in computer and network security, has great potential in security and cryptography. This topic deals with the cryptographic features and implementations in Python from its uses in computer and network security to hashing and encryption/decryption algorithms.

Syntax

Remarks

Many of the methods in hashlib will require you to pass values interpretable as buffers of bytes, rather than strings. This is the case for hashlib.new().update() as well as hashlib.pbkdf2_hmac. If you have a string, you can convert it to a byte buffer by prepending the character b to the start of the string:

"This is a string"
b"This is a buffer of bytes"

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents