mirror of
https://github.com/Legrandin/pycryptodome.git
synced 2025-10-22 01:14:06 +00:00
105 lines
3.2 KiB
Python
105 lines
3.2 KiB
Python
![]() |
# ===================================================================
|
||
|
#
|
||
|
# Copyright (c) 2014, Legrandin <helderijs@gmail.com>
|
||
|
# All rights reserved.
|
||
|
#
|
||
|
# Redistribution and use in source and binary forms, with or without
|
||
|
# modification, are permitted provided that the following conditions
|
||
|
# are met:
|
||
|
#
|
||
|
# 1. Redistributions of source code must retain the above copyright
|
||
|
# notice, this list of conditions and the following disclaimer.
|
||
|
# 2. Redistributions in binary form must reproduce the above copyright
|
||
|
# notice, this list of conditions and the following disclaimer in
|
||
|
# the documentation and/or other materials provided with the
|
||
|
# distribution.
|
||
|
#
|
||
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
||
|
# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
||
|
# COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||
|
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
||
|
# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||
|
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
||
|
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||
|
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
||
|
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||
|
# POSSIBILITY OF SUCH DAMAGE.
|
||
|
# ===================================================================
|
||
|
|
||
|
from Crypto.Math.Numbers import Natural
|
||
|
from Crypto import Random
|
||
|
|
||
|
COMPOSITE = 1
|
||
|
PROBABLY_PRIME = 2
|
||
|
|
||
|
|
||
|
def miller_rabin_test(candidate, iterations, randfunc=None):
|
||
|
"""Perform a Miller-Rabin primality test on an integer.
|
||
|
|
||
|
The test is specified in Section C.3.1 of `FIPS PUB 186-4`__.
|
||
|
|
||
|
:Parameters:
|
||
|
:candidate: integer
|
||
|
The number to test for primality.
|
||
|
:iterations: integer
|
||
|
The maximum number of iterations to perform before
|
||
|
declaring a candidate a probable prime.
|
||
|
:randfunc: callable
|
||
|
An RNG function where bases are taken from.
|
||
|
|
||
|
:Returns:
|
||
|
``Primality.COMPOSITE`` or ``Primality.PROBABLY_PRIME``.
|
||
|
|
||
|
.. __: http://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.186-4.pdf
|
||
|
"""
|
||
|
|
||
|
if not isinstance(candidate, Natural):
|
||
|
candidate = Natural(candidate)
|
||
|
|
||
|
if candidate.is_even():
|
||
|
return COMPOSITE
|
||
|
|
||
|
one = Natural(1)
|
||
|
minus_one = Natural(candidate - 1)
|
||
|
|
||
|
if randfunc is None:
|
||
|
randfunc = Random.new().read
|
||
|
|
||
|
# Step 1 and 2
|
||
|
m = Natural(minus_one)
|
||
|
a = 0
|
||
|
while m.is_even():
|
||
|
m >>= 1
|
||
|
a += 1
|
||
|
|
||
|
# Skip step 3
|
||
|
|
||
|
# Step 4
|
||
|
for i in xrange(iterations):
|
||
|
|
||
|
# Step 4.1-2
|
||
|
base = 1
|
||
|
while base in (one, minus_one):
|
||
|
base = Natural.random_range(2, candidate - 2)
|
||
|
|
||
|
# Step 4.3-4.4
|
||
|
z = pow(base, m, candidate)
|
||
|
if z in (one, minus_one):
|
||
|
continue
|
||
|
|
||
|
# Step 4.5
|
||
|
for j in xrange(1, a):
|
||
|
z = pow(z, 2, candidate)
|
||
|
if z == minus_one:
|
||
|
break
|
||
|
if z == one:
|
||
|
return COMPOSITE
|
||
|
else:
|
||
|
return COMPOSITE
|
||
|
|
||
|
# Step 5
|
||
|
return PROBABLY_PRIME
|
||
|
|