脚本之家,脚本语言编程技术及教程分享平台!
分类导航

Python|VBS|Ruby|Lua|perl|VBA|Golang|PowerShell|Erlang|autoit|Dos|bat|shell|

服务器之家 - 脚本之家 - Python - python密码学RSA算法及秘钥创建教程

python密码学RSA算法及秘钥创建教程

2023-02-17 10:18菜鸟教程 Python

这篇文章主要为大家介绍了python密码学RSA算法及秘钥创建教程,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪

RSA算法

RSA算法是一种公钥加密技术,被认为是最安全的加密方式.它是由Rivest,Shamir和Adleman于1978年发明的,因此命名为 RSA 算法.

RSA算法具有以下特征 :

  • RSA算法是包含素数的整数在有限域中的一种流行取幂./p>
  • 此方法使用的整数足够大,难以解决.
  • 此算法中有两组密钥:私钥和公钥.

您必须完成以下步骤才能工作关于RSA算法 :

步骤1:生成RSA模数

初始过程从选择两个素数即p和q开始,然后计算他们的产品N,如图所示去;

 N = p * q

这里,设N为指定的大数.

步骤2:派生数(e)

将数字e视为派生数,该数字应大于1且小于(p-1)和(q-1).主要条件是应该没有(p-1)和(q-1)的公因子,除了1

步骤3:公钥

指定的一对数字 n 和 e 形成RSA公钥并将其公开.

步骤4:私钥

私钥 d 是根据数字p,q和e计算的.数字之间的数学关系如下:

 ed = 1 mod(p-1)(q-1)

上面的公式是扩展欧几里得算法的基本公式,它以p和q作为输入参数.

加密公式

考虑将明文消息发送给公钥为(n,e)的人的发件人.要在给定方案中加密纯文本消息,请使用以下语法 :

 C = Pe mod n

解密公式

解密过程非常简单,包括用于系统方法计算的分析.考虑到接收器 C 具有私钥 d ,结果模数将计算为 :

 Plaintext = Cd mod n

生成RSA密钥

我们将重点介绍使用Python逐步实现RSA算法.

涉及以下步骤生成RSA密钥 :

  • 创建两个大的素数,即 p 和 q 的.这些数字的乘积称为 n ,其中 n = p * q
  • 生成一个(p-1)和(q-1)相对素数的随机数.将数字称为 e .
  • 计算e的模数逆.计算出的倒数将被称为 d .

生成RSA密钥的算法

我们需要两个主要算法来使用Python和minus生成RSA密钥; Cryptomath模块和 Rabin Miller模块.

Cryptomath模块

cryptomath的源代码遵循RSA算法的所有基本实现的模块如下

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
def gcd(a, b):
   while a != 0:
      a, b = b % a, a
   return b
def findModInverse(a, m):
   if gcd(a, m) != 1:
      return None
   u1, u2, u3 = 1, 0, a
   v1, v2, v3 = 0, 1, m
   
   while v3 != 0:
      q = u3 // v3
         v1, v2, v3, u1, u2, u3 = (u1 - q * v1), (u2 - q * v2), (u3 - q * v3), v1, v2, v3
   return u1 % m

RabinMiller模块

源代码遵循RSA算法的所有基本实现的RabinMiller模块如下<

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import random
def rabinMiller(num):
   = num - 1
   = 0
   
   while % 2 == 0:
      = // 2
      += 1
   for trials in range(5):
      = random.randrange(2, num - 1)
      = pow(a, s, num)
      if v != 1:
         = 0
         while v != (num - 1):
            if == - 1:
               return False
            else:
               = + 1
               = (v ** 2% num
      return True
def isPrime(num):
   if (num 72):
      return False
   lowPrimes = [23571113171923293137414347535961
   67717379838997101103107109113127131137139149151
   157163167173179181191193197199211223227229233239241
   251257263269271277281283293307311313,317331337347349
   353359367373379383389397401409419421431433439443449
   457461463467479487491499503509521523541547557563569
   571577587593599601607613617619631641643647653659661
   673677683691701709719727733739743751757761769773787
   797809811821823827829839853857859863877881883887907
   911919929937941947953967971977983991997]
   if num in lowPrimes:
      return True
   for prime in lowPrimes:
      if (num % prime == 0):
         return False
   return rabinMiller(num)
def generateLargePrime(keysize = 1024):
   while True:
      num = random.randrange(2**(keysize-1), 2**(keysize))
      if isPrime(num):
         return num

生成RSA密钥完整代码

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import random, sys, os, rabinMiller, cryptomath
def main():
   makeKeyFiles('RSA_demo'1024)
def generateKey(keySize):
   # Step 1: Create two prime numbers, p and q. Calculate n = p * q.
   print('Generating p prime...')
   = rabinMiller.generateLargePrime(keySize)
   print('Generating q prime...')
   = rabinMiller.generateLargePrime(keySize)
   = * q
   # Step 2: Create a number e that is relatively prime to (p-1)*(q-1).
   print('Generating e that is relatively prime to (p-1)*(q-1)...')
   while True:
      = random.randrange(2 ** (keySize - 1), 2 ** (keySize))
      if cryptomath.gcd(e, (p - 1* (q - 1)) == 1:
         break
   
   # Step 3: Calculate d, the mod inverse of e.
   print('Calculating d that is mod inverse of e...')
   = cryptomath.findModInverse(e, (p - 1* (q - 1))
   publicKey = (n, e)
   privateKey = (n, d)
   print('Public key:', publicKey)
   print('Private key:', privateKey)
   return (publicKey, privateKey)
def makeKeyFiles(name, keySize):
   # Creates two files 'x_pubkey.txt' and 'x_privkey.txt' 
      (where x is the value in name) with the the n,e and d,e integers written in them,
   # delimited by a comma.
   if os.path.exists('%s_pubkey.txt' % (name)) or os.path.exists('%s_privkey.txt' % (name)):
      sys.exit('WARNING: The file %s_pubkey.txt or %s_privkey.txt already exists! Use a different name or delete these files and re-run this program.' % (name, name))
   publicKey, privateKey = generateKey(keySize)
   print()
   print('The public key is a %s and a %s digit number.' % (len(str(publicKey[0])), len(str(publicKey[1])))) 
   print('Writing public key to file %s_pubkey.txt...' % (name))
   
   fo = open('%s_pubkey.txt' % (name), 'w')
fo.write('%s,%s,%s' % (keySize, publicKey[0], publicKey[1]))
   fo.close()
   print()
   print('The private key is a %s and a %s digit number.' % (len(str(publicKey[0])), len(str(publicKey[1]))))
   print('Writing private key to file %s_privkey.txt...' % (name))
   
   fo = open('%s_privkey.txt' % (name), 'w')
   fo.write('%s,%s,%s' % (keySize, privateKey[0], privateKey[1]))
   fo.close()
# If makeRsaKeys.py is run (instead of imported as a module) call
# the main() function.
if __name__ == '__main__':
   main()

输出

生成公钥和私钥并将其保存在相应的文件中,如以下输出所示.

python密码学RSA算法及秘钥创建教程

以上就是python密码学RSA算法及秘钥创建教程的详细内容,更多关于python密码学RSA算法秘钥的资料请关注服务器之家其它相关文章!

原文链接:https://www.it1352.com/OnLineTutorial/cryptography_with_python/cryptography_with_python_understanding_rsa_algorithm.html

延伸 · 阅读

精彩推荐
  • Pythonpython 获取网页编码方式实现代码

    python 获取网页编码方式实现代码

    这篇文章主要介绍了python 获取网页编码方式实现代码的相关资料,需要的朋友可以参考下...

    Python教程网5112020-09-23
  • Python用Python写一段用户登录的程序代码

    用Python写一段用户登录的程序代码

    下面小编就为大家分享一篇用Python写一段用户登录的程序代码,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧...

    huangyingleo7042021-02-04
  • Pythonpython中isoweekday和weekday的区别及说明

    python中isoweekday和weekday的区别及说明

    这篇文章主要介绍了python中isoweekday和weekday的区别及说明,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教...

    weixin_4200903010942022-07-19
  • Pythonpython压包的概念及实例详解

    python压包的概念及实例详解

    在本篇文章里小编给大家整理的是一篇关于python压包的概念及实例详解内容,有兴趣的朋友们可以参考学习下。...

    小妮浅浅9712021-09-05
  • PythonPython超市进销存管理系统!老妈开超市有系统了

    Python超市进销存管理系统!老妈开超市有系统了

    python实现超市进销存管理系统,系统包括7种操作,分别是:1.查询所有商品;2.添加商品;3.修改商品;4.删除商品;5.卖出商品;6.汇总;0.退出系统。 ...

    今日头条17392020-11-10
  • PythonPython标准库uuid模块(生成唯一标识)详解

    Python标准库uuid模块(生成唯一标识)详解

    uuid通过Python标准库的uuid模块生成通用唯一ID(或“UUID”)的一种快速简便的方法,下面这篇文章主要给大家介绍了关于Python标准库uuid模块(生成唯一标识)...

    Gnbp6942023-02-06
  • Python关于Python中 循环器 itertools的介绍

    关于Python中 循环器 itertools的介绍

    循环器是对象的容器,包含有多个对象。通过调用循环器的next()方法 (__next__()方法,在Python 3.x中),循环器将依次返回一个对象。直到所有的对象遍历穷尽...

    Vamei10182022-01-04
  • PythonPython OpenCV阈值处理详解

    Python OpenCV阈值处理详解

    阈值处理是一种简单、有效的将图像划分为前景和背景的方法。图像分割通常用于根据对象的某些属性(例如,颜色、边缘或直方图)从背景中提取对象。本...

    盼小辉丶11482022-09-14