zoukankan      html  css  js  c++  java
  • python标准库介绍——28 sha 模块详解

    ==sha 模块==
    
    
    ``sha`` 模块提供了计算信息摘要(密文)的另种方法, 如 [Example 2-39 #eg-2-39] 所示. 
    它与 ``md5`` 模块类似, 但生成的是 160 位签名.
    
    ====Example 2-39. 使用 sha 模块====[eg-2-39]
    
    ```
    File: sha-example-1.py
    
    import sha
    
    hash = sha.new()
    hash.update("spam, spam, and eggs")
    
    print repr(hash.digest())
    print hash.hexdigest()
    
    *B*'3213330326I331272-j303247240345343Tvq364346311'
    d1db031649d9ba2d6ac3a7a0e5e3547671f4e6c9*b*
    ```
    
    关于 ``sha`` 密文的使用, 请参阅 ``md5`` 中的例子.
    

      

  • 相关阅读:
    vc++ 编译器工具
    lesson 17 进程间通信 孙鑫 VC++
    VC++ msdn
    VC++ 相关问题
    MySQL
    Git
    Angular
    Linux
    阿里云服务器
    Git
  • 原文地址:https://www.cnblogs.com/xuchunlin/p/7763761.html
Copyright © 2011-2022 走看看