美文网首页
hashlib模块&subprocess模块

hashlib模块&subprocess模块

作者: whenitsallover | 来源:发表于2018-02-15 18:16 被阅读0次

hashlib模块

hash: 一种算法,3.x中代替了md5和sha模块,主要提供SHA1,SHA224,SHA256,SHA384,SHA512,MD5算法

三个特点:

1、内容相同则hash运算结果相同,内容稍微改变则hash值也跟着改变。
2、不可逆推。
3、相同算法:无论校验多长的数据,得到的哈希值长度固定。

import hashlib
 
m=hashlib.md5()# m=hashlib.sha256()
 
m.update('hello'.encode('utf8'))
print(m.hexdigest())  #5d41402abc4b2a76b9719d911017c592
 
m.update('alvin'.encode('utf8'))
 
print(m.hexdigest())  #92a7e713c30abbb0319fa07da2a5c4af
 
m2=hashlib.md5()
m2.update('helloalvin'.encode('utf8'))
print(m2.hexdigest()) #92a7e713c30abbb0319fa07da2a5c4af

'''
注意:把一段很长的数据update多次,与一次update这段长数据,得到的结果一样
但是update多次为校验大文件提供了可能。
'''
★以上加密算法虽然非常厉害,但有些时候存在缺陷,即:通过撞库可以反解,因此,有必要对加密算法中添加自定义的key再来做加密
import hashlib
 
# ######## 256 ########
 
hash = hashlib.sha256('898oaFs09f'.encode('utf8'))
hash.update('alvin'.encode('utf8'))
print (hash.hexdigest())#e79e68f070cdedcfe63eaf1a2e92c83b4cfb1b5c6bc452d214c1b7e77cdfd1c7

模拟撞库破解密码

import hashlib
passwds=[
    'alex3714',
    'alex1313',
    'alex94139413',
    'alex123456',
    '123456alex',
    'a123lex',
    ]
def make_passwd_dic(passwds):
    dic={}
    for passwd in passwds:
        m=hashlib.md5()
        m.update(passwd.encode('utf-8'))
        dic[passwd]=m.hexdigest()
    return dic

def break_code(cryptograph,passwd_dic):
    for k,v in passwd_dic.items():
        if v == cryptograph:
            print('密码是===>\033[46m%s\033[0m' %k)

cryptograph='aee949757a2e698417463d47acac93df'
break_code(cryptograph,make_passwd_dic(passwds))

模拟撞库破解密码

python 中还有一个hmac模块,它内部对我们创建key和内容进行进一步处理然后再加密。

import hmac
h = hmac.new('alvin'.encode('utf8'))
h.update('hello'.encode('utf8'))
print (h.hexdigest())#320df9832eab4c038b6c1d7ed73a5940

注意:

#要想保证hmac最终结果一致,必须保证:
#1:hmac.new括号内指定的初始key一样
#2:无论update多少次,校验的内容累加到一起是一样的内容

import hmac

h1=hmac.new(b'egon')
h1.update(b'hello')
h1.update(b'world')
print(h1.hexdigest())

h2=hmac.new(b'egon')
h2.update(b'helloworld')
print(h2.hexdigest())

h3=hmac.new(b'egonhelloworld')
print(h3.hexdigest())

'''
f1bf38d054691688f89dcd34ac3c27f2
f1bf38d054691688f89dcd34ac3c27f2
bcca84edd9eeb86f30539922b28f3981
'''

注意!注意!注意

subprocess模块

official link:https://docs.python.org/2/library/subprocess.html?highlight=subprocess#frequently-used-arguments

相关文章

  • hashlib模块&subprocess模块

    hashlib模块 hash: 一种算法,3.x中代替了md5和sha模块,主要提供SHA1,SHA224,SHA...

  • Python模块·Subprocess子进程

    一、Subprocess模块的定义: subprocess模块主要用于执行系统命令 subprocess模块允许你...

  • python hashlib模块简介

    python hashlib模块简介 一、hashlib模块里有什么 hashlib模块提供了多种安全散列和消息摘...

  • python常用模块!!

    os模块: stat模块: sys模块: hashlib,md5模块: random模块: types模块: at...

  • Python 入门之 内置模块 -- hashlib模块

    Python 入门之 内置模块 -- hashlib模块 1、hashlib 摘要算法,加密算法 (1)主要用途:...

  • 5.系统模块下

    日志模块logging 日志对象调用: configparser模块 生成文档模块 hashlib模块 加密相关操作

  • 第018篇:常用模块(hashlib|os|sys)

    hashlib模块 os模块 os模块是与操作系统交互的一个接口 sys模块

  • hashlib模块

    hash算法就像一座工厂,工厂接收你送来的原材料(可以用m.update()为工厂运送原材料),经过加工返回的产品...

  • hashlib模块

    (一) hashlib的作用 hashlib主要提供字符加密功能,将md5和sha模块整合到了一起,支持md5,...

  • hashlib模块

    相关文章: https://www.cnblogs.com/featherwit/p/13280316.html[...

网友评论

      本文标题:hashlib模块&subprocess模块

      本文链接:https://www.haomeiwen.com/subject/wrdutftx.html