This repository was archived by the owner on Apr 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Initial PR #74
Closed
Closed
Initial PR #74
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
36a62d6
Add inlined RSA Accumulator (size: 55782 → 52196)
nrryuya f60e238
Remove unused funcs (size: 52196 → 51313)
nrryuya df19b2c
Remove _compare (size: 46414)
nrryuya 80cb00a
Public _modularAdd and _modularSub (size: 40506)
nrryuya b442954
Public _modularExp (size: 33393)
nrryuya 0f2957a
Public wrapping functions (size: 30175)
nrryuya 9c6b965
WIP: Add prime tester
hskang9 a484928
Add negative case
hskang9 1902057
Add big number arithmetic functions
hskang9 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,270 @@ | ||
# @dev RSA Accumulator | ||
# @author Ryuya Nakamura (@nrryuya) | ||
# Based on The Matter team's work: | ||
# https://github.com/matterinc/RSAAccumulator/blob/master/contracts/RSAAccumulator.sol | ||
|
||
### CONSTANTS ### | ||
# FIXME: The sizes of arrays in this file should be replaced with these constants: | ||
# https://github.com/ethereum/vyper/issues/1167 | ||
|
||
N_LIMBS_LENGTH: constant(int128) = 8 | ||
G: constant(uint256) = 3 | ||
|
||
M_LIST_LENGTH: constant(int128) = N_LIMBS_LENGTH | ||
M_BYTE_COUNT: constant(int128) = 32 * M_LIST_LENGTH | ||
M_BYTE_COUNT_BYTES32: constant(bytes32) = convert(M_BYTE_COUNT, bytes32) | ||
# For now, the same lengths are used for the simplicity of impelementation. | ||
BASE_BYTE_COUNT_BYTES32: constant(bytes32) = M_BYTE_COUNT_BYTES32 | ||
E_BYTE_COUNT_BYTES32: constant(bytes32) = M_BYTE_COUNT_BYTES32 | ||
|
||
PRECOMPILED_BIGMODEXP: constant(address) = 0x0000000000000000000000000000000000000005 | ||
|
||
|
||
### STORAGE VARIABLES ### | ||
|
||
g: public(uint256[8]) # Never modified once set in constructor | ||
accumulator: public(uint256[8]) # try to store as static array for now; In BE | ||
N: public(uint256[8]) | ||
|
||
|
||
### BIG INTEGER ARITHMETIC FUNCTIONS ### | ||
|
||
# this assumes that exponent in never larger than 256 bits | ||
@public | ||
def _modularExp(_base: uint256[8], _e: uint256, _m: uint256[8]) -> uint256[8]: | ||
e: uint256[8] | ||
e[M_LIST_LENGTH - 1] = _e | ||
|
||
tmp: bytes32[8] | ||
for i in range(M_LIST_LENGTH): | ||
tmp[i] = convert(_base[i], bytes32) | ||
base: bytes[256] = concat(tmp[0], tmp[1], tmp[2], tmp[3], tmp[4], tmp[5], tmp[6], tmp[7]) | ||
|
||
for i in range(M_LIST_LENGTH): | ||
tmp[i] = convert(e[i], bytes32) | ||
exponent: bytes[256] = concat(tmp[0], tmp[1], tmp[2], tmp[3], tmp[4], tmp[5], tmp[6], tmp[7]) | ||
|
||
for i in range(M_LIST_LENGTH): | ||
tmp[i] = convert(_m[i], bytes32) | ||
modulus: bytes[256] = concat(tmp[0], tmp[1], tmp[2], tmp[3], tmp[4], tmp[5], tmp[6], tmp[7]) | ||
# ref. https://eips.ethereum.org/EIPS/eip-198 | ||
# 864 = 32 * 3 + <length_of_BASE> + <length_of_EXPONENT> + <length_of_MODULUS> | ||
data: bytes[864] = concat(BASE_BYTE_COUNT_BYTES32, E_BYTE_COUNT_BYTES32, M_BYTE_COUNT_BYTES32, | ||
base, exponent, modulus) | ||
# NOTE: raw_call doesn't support static call for now. | ||
res: bytes[256] = raw_call(PRECOMPILED_BIGMODEXP, data, outsize=256, gas=2000) | ||
|
||
out: uint256[8] | ||
for i in range(M_LIST_LENGTH): | ||
out[i] = convert(extract32(res, i * 32, type=bytes32), uint256) | ||
return out | ||
|
||
|
||
@public | ||
def _modularExpVariableLength(_base: uint256[8], _e: uint256[8], _m: uint256[8]) -> uint256[8]: | ||
tmp: bytes32[8] | ||
for i in range(M_LIST_LENGTH): | ||
tmp[i] = convert(_base[i], bytes32) | ||
base: bytes[256] = concat(tmp[0], tmp[1], tmp[2], tmp[3], tmp[4], tmp[5], tmp[6], tmp[7]) | ||
|
||
for i in range(M_LIST_LENGTH): | ||
tmp[i] = convert(_e[i], bytes32) | ||
exponent: bytes[256] = concat(tmp[0], tmp[1], tmp[2], tmp[3], tmp[4], tmp[5], tmp[6], tmp[7]) | ||
|
||
for i in range(M_LIST_LENGTH): | ||
tmp[i] = convert(_m[i], bytes32) | ||
modulus: bytes[256] = concat(tmp[0], tmp[1], tmp[2], tmp[3], tmp[4], tmp[5], tmp[6], tmp[7]) | ||
# ref. https://eips.ethereum.org/EIPS/eip-198 | ||
# 864 = 32 * 3 + <length_of_BASE> + <length_of_EXPONENT> + <length_of_MODULUS> | ||
data: bytes[864] = concat(BASE_BYTE_COUNT_BYTES32, E_BYTE_COUNT_BYTES32, M_BYTE_COUNT_BYTES32, | ||
base, exponent, modulus) | ||
# NOTE: raw_call doesn't support static call for now. | ||
res: bytes[256] = raw_call(PRECOMPILED_BIGMODEXP, data, outsize=256, gas=2000) | ||
|
||
out: uint256[8] | ||
for i in range(M_LIST_LENGTH): | ||
out[i] = convert(extract32(res, i * 32, type=bytes32), uint256) | ||
return out | ||
|
||
|
||
@public | ||
@constant | ||
def _wrappingSub(_a: uint256[8], _b: uint256[8]) -> uint256[8]: | ||
borrow: bool = False | ||
limb: uint256 = 0 | ||
o: uint256[8] | ||
for i in range(M_LIST_LENGTH): | ||
j: int128 = M_LIST_LENGTH - i | ||
limb = _a[j] | ||
if borrow: | ||
if limb == 0: | ||
borrow = True | ||
limb -= 1 | ||
o[j] = limb - _b[j] | ||
else: | ||
limb -= 1 | ||
if limb >= _b[j]: | ||
borrow = False | ||
o[j] = limb - _b[j] | ||
else: | ||
if limb < _b[j]: | ||
borrow = True | ||
o[j] = limb - _b[j] | ||
return o | ||
|
||
@public | ||
@constant | ||
def _wrappingAdd(_a: uint256[8], _b: uint256[8]) -> uint256[8]: | ||
carry: bool = False | ||
limb: uint256 = 0 | ||
subaddition: uint256 = 0 | ||
o: uint256[8] | ||
for i in range(M_LIST_LENGTH): | ||
j: int128 = M_LIST_LENGTH - i | ||
limb = _a[j] | ||
if carry: | ||
if limb == 0: | ||
carry = True | ||
o[j] = _b[j] | ||
else: | ||
limb += 1 | ||
subaddition = limb + _b[j] | ||
if subaddition >= limb: | ||
carry = False | ||
o[j] = subaddition | ||
else: | ||
subaddition = limb + _b[j] | ||
if subaddition < limb: | ||
carry = True | ||
o[j] = subaddition | ||
return o | ||
|
||
@public | ||
@constant | ||
def _modularSub(_a: uint256[8], _b: uint256[8], _m: uint256[8]) -> uint256[8]: | ||
o: uint256[8] | ||
|
||
# comparison: int128 = self._compare(_a, _b) | ||
comparison: int128 = 0 | ||
for i in range(M_LIST_LENGTH): | ||
if _a[i] > _b[i]: | ||
comparison = 1 | ||
elif _a[i] < _b[i]: | ||
comparison = -1 | ||
|
||
if comparison == 0: | ||
return o | ||
elif comparison == 1: | ||
return self._wrappingSub(_a, _b) | ||
else: | ||
tmp: uint256[8] = self._wrappingSub(_b, _a) | ||
return self._wrappingSub(_m, tmp) | ||
|
||
@public | ||
@constant | ||
def _modularAdd(_a: uint256[8], _b: uint256[8], _m: uint256[8]) -> uint256[8]: | ||
space: uint256[8] = self._wrappingSub(_m, _a) | ||
o: uint256[8] | ||
|
||
# comparison: int128 = self._compare(_a, _b) | ||
comparison: int128 = 0 | ||
for i in range(M_LIST_LENGTH): | ||
if _a[i] > _b[i]: | ||
comparison = 1 | ||
elif _a[i] < _b[i]: | ||
comparison = -1 | ||
|
||
if comparison == 0: | ||
return o | ||
elif comparison == 1: | ||
return self._wrappingAdd(_a, _b) | ||
else: | ||
return self._wrappingSub(_b, space) | ||
|
||
# NOTE: Removing _modularMul4 increases the code size. | ||
@private | ||
def _modularMul4(_a: uint256[8], _b: uint256[8], _m: uint256[8]) -> uint256[8]: | ||
aPlusB: uint256[8] = self._modularExp(self._modularAdd(_a, _b, _m), 2, _m) | ||
aMinusB: uint256[8] = self._modularExp(self._modularSub(_a, _b, _m), 2, _m) | ||
return self._modularSub(aPlusB, aMinusB, _m) | ||
|
||
# NOTE: Removing _modularMulBy4 increases the code size. | ||
# cheat and just do two additions | ||
@private | ||
@constant | ||
def _modularMulBy4(_a: uint256[8], _m: uint256[8]) -> uint256[8]: | ||
t: uint256[8] = self._modularAdd(_a, _a, _m) | ||
return self._modularAdd(t, t, _m) | ||
|
||
|
||
### ACCUMULATOR FUNCTIONS ### | ||
|
||
@public | ||
def __init__(_N: uint256[8]): | ||
self.N = _N | ||
initialAccumulator: uint256[8] | ||
initialAccumulator[N_LIMBS_LENGTH - 1] = G | ||
self.g = initialAccumulator | ||
self.accumulator = initialAccumulator | ||
|
||
@public | ||
def updateAccumulator(_value: uint256): | ||
self.accumulator = self._modularExp(self.accumulator, _value, self.N) | ||
|
||
@public | ||
def updateAccumulatorMultiple(_limbs: uint256[8]): | ||
self.accumulator = self._modularExpVariableLength(self.accumulator, _limbs, self.N) | ||
|
||
@private | ||
@constant | ||
def _isPrime(_num: uint256) -> bool: | ||
assert _num < 2 ** 64 | ||
# TODO: Implementation! | ||
return True | ||
|
||
# check that (g^w)^x = A | ||
@public | ||
def checkInclusionProof(_prime: uint256, _witnessLimbs: uint256[8]) -> bool: | ||
assert self._isPrime(_prime) | ||
Nread: uint256[8] = self.N | ||
lhs: uint256[8] = self._modularExpVariableLength(self.g, _witnessLimbs, Nread) | ||
lhs = self._modularExp(lhs, _prime, Nread) | ||
|
||
comparison: int128 = 0 | ||
for i in range(M_LIST_LENGTH): | ||
if lhs[i] > self.accumulator[i]: | ||
comparison = 1 | ||
elif lhs[i] < self.accumulator[i]: | ||
comparison = -1 | ||
|
||
if comparison != 0: | ||
return False | ||
return True | ||
|
||
# check that A*(g^r) = g^(x1*x2*...*xn)^cofactor | ||
@public | ||
def checkNonInclusionProof(_primes: uint256[8], _rLimbs: uint256[8], _cofactorLimbs: uint256[8]) -> bool: | ||
for p in _primes: | ||
assert self._isPrime(p) | ||
Nread: uint256[8] = self.N | ||
lhs: uint256[8] = self._modularExpVariableLength(self.g, _rLimbs, Nread) | ||
lhs = self._modularMul4(lhs, self.accumulator, Nread) | ||
# extra factor of 4 on the LHS, assuming M_LIST_LENGTH % 4 == 0 | ||
multiplicationResult: uint256 = 1 | ||
rhs: uint256[8] = self._modularExpVariableLength(self.g, _cofactorLimbs, Nread) | ||
for i in range(2): # 2 = M_LIST_LENGTH / 4 | ||
multiplicationResult = _primes[4 * i] * _primes[4 * i + 1] * _primes[4 * i + 2] * _primes[4 * i + 3] | ||
rhs = self._modularExp(rhs, multiplicationResult, Nread) | ||
rhs = self._modularMulBy4(rhs, Nread) | ||
# extra factor of 4 on LHS is compensated | ||
|
||
comparison: int128 = 0 | ||
for i in range(M_LIST_LENGTH): | ||
if lhs[i] > rhs[i]: | ||
comparison = 1 | ||
elif lhs[i] < rhs[i]: | ||
comparison = -1 | ||
|
||
if comparison != 0: | ||
return False | ||
return True |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
# @dev isPrime | ||
# @author Nick Hyungsuk Kang (@hskang9) | ||
# Prime Tester using Fermat's primality test where a=2 | ||
|
||
@private | ||
@constant | ||
def _compare(_a: uint256[8], _b: uint256[8]) -> int128: | ||
for i in range(M_LIST_LENGTH): | ||
if _a[i] > _b[i]: | ||
return 1 | ||
elif _a[i] < _b[i]: | ||
return -1 | ||
return 0 | ||
|
||
### BIG INTEGER ARITHMETIC FUNCTIONS ### | ||
|
||
@private | ||
@constant | ||
def _convertUInt256ListToBytes(_inp: uint256[8]) -> bytes[256]: | ||
# FIXME: Make it more simple when conversion to bytes is supported: | ||
# https://github.com/ethereum/vyper/issues/1093 | ||
tmp: bytes32[8] | ||
for i in range(M_LIST_LENGTH): | ||
tmp[i] = convert(_inp[i], bytes32) | ||
return concat(tmp[0], tmp[1], tmp[2], tmp[3], tmp[4], tmp[5], tmp[6], tmp[7]) | ||
|
||
@private | ||
@constant | ||
def _convertBytesArrayToUInt256List(_inp: bytes[256]) -> uint256[8]: | ||
out: uint256[8] | ||
for i in range(M_LIST_LENGTH): | ||
out[i] = convert(extract32(_inp, i * 32, type=bytes32), uint256) | ||
return out | ||
|
||
@private | ||
def _bigModExp(_base: uint256[8], _e: uint256[8], _m: uint256[8]) -> uint256[8]: | ||
base: bytes[256] = self._convertUInt256ListToBytes(_base) | ||
exponent: bytes[256] = self._convertUInt256ListToBytes(_e) | ||
modulus: bytes[256] = self._convertUInt256ListToBytes(_m) | ||
# ref. https://eips.ethereum.org/EIPS/eip-198 | ||
# 864 = 32 * 3 + <length_of_BASE> + <length_of_EXPONENT> + <length_of_MODULUS> | ||
data: bytes[864] = concat(BASE_BYTE_COUNT_BYTES32, E_BYTE_COUNT_BYTES32, M_BYTE_COUNT_BYTES32, | ||
base, exponent, modulus) | ||
# NOTE: raw_call doesn't support static call for now. | ||
res: bytes[256] = raw_call(PRECOMPILED_BIGMODEXP, data, outsize=256, gas=2000) | ||
return self._convertBytesArrayToUInt256List(res) | ||
|
||
# this assumes that the number is less than 2 ** 64 | ||
@public | ||
@constant | ||
def _isPrime(_num: uint256) -> bool: | ||
assert _num < 2 ** 64 | ||
if _num < 2: | ||
return False | ||
det: uint256[8] = _bigModExp(2, _num-1, _num) | ||
if self._compare(det, [0,0,0,0,0,0,0,1]) ==0: | ||
return True | ||
return False |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I got this error here ;)