1. 首页
  2. 编程语言
  3. PHP
  4. phprsa加密算法

phprsa加密算法

上传者: 2019-01-21 12:21:56上传 PHP文件 1.41KB 热度 54次
python的rsa加密代码翻译成php import rsa def get_encrypted_pw(self,password,nonce,servertime,pub_key): rsa_e = 65537 #0x10001 pw_string = str(servertime) + '\t' + str(nonce) + '\n' + str(password) key = rsa.PublicKey(int(pub_key, 16), rsa_e) pw_encypted = rsa.encrypt(pw_string, key) pass
用户评论