1import hashlib
2
3secret_thing = hashlib.sha256()
4# Keep in mind you add on to the already existing string when you .update the same thing.
5secret_thing.update(b"hahahahaahhahaa nobody will guess my secret message")
6
7secret_thing.digest_size
8secret_thing.block_size