Hash module Hashlib and HMAC

Source: Internet
Author: User
Tags hmac sha1

Hashlib Module
    1. For cryptographic related operations, instead of the MD5 module and the SHA module, mainly provides the SHA1,SHA224,SSHA256,SHA384,SHA512,MD5 algorithm
    2. Look directly at the code case:

---------MD5-----------

hash = Hashlib.md5 ()  hash.update (bytes ('admin', encoding='  Utf-8'  )print(hash.hexdigest ())  print( Hash.digest ())  

----------SHA1---------

hash = HASHLIB.SHA1 ()  hash.update (bytes ('admin', encoding='  Utf-8'))  print(Hash.hexdigest ())  

----------sha256-------

hash = hashlib.sha256 ()  hash.update (bytes ('admin', encoding= ' Utf-8 ' ) )  print(Hash.hexdigest ())

---------sha384--------

hash = hashlib.sha384 ()  hash.update (bytes ("admin", encoding=' Utf-8 ' ) )  print(Hash.hexdigest ())  

------------sha512--------

hash = hashlib.sha512 ()  hash.update (bytes ('admin', encoding= ' Utf-8 ' ) )  print(Hash.hexdigest ())  
Attention

Although the above encryption algorithm is very powerful, but sometimes there is a flaw, namely: through the pool can be reversed.

Therefore, it is necessary to add a custom key to the encryption algorithm to encrypt

hash = hashlib.md5 (bytes ('790dfhdfe3', encoding='Utf-8')) hash.update (bytes ('Admin', encoding='Utf-8'))  Print(Hash.hexdigest ())-------------------------------Python also has an HMAC module, which internally creates key and content for further processing and then encrypts it.ImportHMAC H= Hmac.new (Bytes ('DFEW3', encoding="Utf-8")) h.update (bytes ('Admin', encoding="Utf-8"))  Print(H.hexdigest ())

Hash module Hashlib and HMAC

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.