1

def crypt(source,key):
    from itertools import cycle
    result=''
    temp=cycle(key)
    for ch in source:
        result=result+chr(ord(ch)^ord(next(temp)))
    return result

source='Jiangxi Insstitute of Busiess and Technology'
key='zWrite'

print('Before Encrypted:'+source)
encrypted=crypt(source,key)
print('After Encrypted:'+encrypted)
decrypted=crypt(encrypted,key)
print('After Decrypted:'+decrypted)
# Before Encrypted:Jiangxi Insstitute of Busiess and Technology
# After Encrypted:0>w;>Z8I6    >E9I ?
# .
# After Decrypted:Jiangxi Insstitute of Busiess and Technology

https://www.cnblogs.com/cmnz/p/6962500.html

SRE实战 互联网时代守护先锋,助力企业售后服务体系运筹帷幄!一键直达领取阿里云限量特价优惠。

2

#字符串自带的简单加密  
encode = str.maketrans('eilouvy','1234567')#加密方式  
words = 'iloveyou'  
encode_words = words.translate(encode)#按encode加密方式加密  
print(encode_words) #输出23461745  
dedoed = str.maketrans('1234567','eilouvy')#解密方式  
dedoed_words = encode_words.translate(dedoed)#按decode解密方式解密  
print(dedoed_words)#输出iloveyou 
--------------------- 
原文:https://blog.csdn.net/tobe_numberone/article/details/80633384 

 

扫码关注我们
微信号:SRE实战
拒绝背锅 运筹帷幄