Python Encryption Decryption

Source: Internet
Author: User
Tags sha1
#-*-Coding:utf-8-*-import hashlib ' encrypt and decrypt ' #MD5是最常见的摘要算法, fast, generates a fixed bit byte, # usually represented by a 32-bit 16 binary string. MD5 = HASHLIB.MD5 () update = Md5.update (' hhhhhaaa ') print (Md5.hexdigest ()) #SHA1的结果是160 bit byte, usually expressed in a 40-bit 16-string notation. SHA1 = HASHLIB.SHA1 () sha1.update (' How to use SHA1 in ') sha1.update (' Python hashlib? ') Print sha1.hexdigest () SHA2 = Hashlib.sha256sha2.update (' How to use SHA1 in ') sha2.update (' Python hashlib? ') Print Sha2.hexdigest ()

  

Python Encryption Decryption

Related Article

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.