コード例 #1
0
def ecdsa_sign(players,need_check=False):
    cn,cp,cq,g, n = Player.cn, Player.cp, Player.cq, Player.g, Player.n
    for p in players:
        p.private_key = p.share_values.pop()
        p.k = p.share_values.pop()
        p.gamma = p.share_values.pop()
        p.set_multiply_x(p.k)
        p.set_multiply_y(p.gamma)
    multiply_beaver(players, need_check)
    for p in players:
        p.delta = p.product
        p.set_multiply_x(p.k)
        p.set_multiply_y(p.private_key)
    multiply_beaver(players, need_check)
    for p in players:
        p.sigma = p.product
        p.set_broadcast(p.delta)
    open_share_with_mac(players)
    for p in players:
        p.delta_inv = inv(p.open_value, n)
        p.k_inv = tuple((p.delta_inv * p.gamma[i])%n for i in range(2))
        p.k_inv_point = mulp(cp, cq, cn, g, p.k_inv[0])
        p.set_broadcast((p.k_inv_point, p.k_inv[1]))
    open_point_with_mac(players)
    for p in players:
        p.r_open = p.open_point[0]
        p.s = tuple(p.hash_message * p.k[i] + p.r_open * p.sigma[i] for i in range(2))
        p.set_broadcast(tuple(p.s))
    open_share_with_mac(players)
    for p in players:
        p.sign = (p.r_open, p.open_value)
コード例 #2
0
ファイル: ecc.py プロジェクト: dlg-yahoo/pyjwkest
 def verify(self, h, sig, pub):
     while h > self.N:
         h >>= 1
     r = self.bytes2int(sig[:self.bytes])
     s = self.bytes2int(sig[self.bytes:])    
     if 0 < r < self.N and 0 < s < self.N:
         w = inv(s, self.N)
         u1 = (h * w) % self.N
         u2 = (r * w) % self.N
         x, y = muladdp(self.a, self.b, self.p, self.G, u1, pub, u2)
         return r % self.N == x % self.N
     return False
コード例 #3
0
 def verify(self, h, sig, pub):
     while h > self.N:
         h >>= 1
     r = self.bytes2int(sig[:self.bytes])
     s = self.bytes2int(sig[self.bytes:])
     if 0 < r < self.N and 0 < s < self.N:
         w = inv(s, self.N)
         u1 = (h * w) % self.N
         u2 = (r * w) % self.N
         x, y = muladdp(self.a, self.b, self.p, self.G, u1, pub, u2)
         return r % self.N == x % self.N
     return False
コード例 #4
0
ファイル: ecc.py プロジェクト: dlg-yahoo/pyjwkest
 def sign(self, h, priv, k=None):
     while h > self.N:
         h >>= 1
     r = s = 0
     while r == 0 or s == 0:
         if k == None:
             k = (getrandbits(self.bits) % (self.N - 1)) + 1
         kinv = inv(k, self.N)
         kg = mulp(self.a, self.b, self.p, self.G, k)
         r = kg[0] % self.N
         if r == 0:
             continue
         s = (kinv * (h + r * priv)) % self.N
     return self.int2bytes(r) + self.int2bytes(s) 
コード例 #5
0
 def sign(self, h, priv, k=None):
     while h > self.N:
         h >>= 1
     r = s = 0
     while r == 0 or s == 0:
         if k == None:
             k = (getrandbits(self.bits) % (self.N - 1)) + 1
         kinv = inv(k, self.N)
         kg = mulp(self.a, self.b, self.p, self.G, k)
         r = kg[0] % self.N
         if r == 0:
             continue
         s = (kinv * (h + r * priv)) % self.N
     return self.int2bytes(r) + self.int2bytes(s)
コード例 #6
0
ファイル: ecdsa.py プロジェクト: MekliCZ/positron
def sign(h, dk):
    '''Sign the numeric value h using private key dk'''
    bits, d = dk
    bits, cn, n, cp, cq, g = get_curve(bits)
    h = truncate(h, cn)
    r = s = 0
    while r == 0 or s == 0:
        k = randkey(bits, cn)
        kinv = inv(k, n)
        kg = mulp(cp, cq, cn, g, k)
        r = kg[0] % n
        if r == 0:
            continue
        s = (kinv * (h + r * d)) % n
    return r, s
コード例 #7
0
def sign(h, dk):
    '''Sign the numeric value h using private key dk'''
    bits, d = dk
    bits, cn, n, cp, cq, g = get_curve(bits)
    h = truncate(h, cn)
    r = s = 0
    while r == 0 or s == 0:
        k = randkey(bits, cn)
        kinv = inv(k, n)
        kg = mulp(cp, cq, cn, g, k)
        r = kg[0] % n
        if r == 0:
            continue
        s = (kinv * (h + r * d)) % n
    return r, s
コード例 #8
0
ファイル: ecdsa.py プロジェクト: MekliCZ/positron
def verify(h, sig, qk):
    '''Verify that 'sig' is a valid signature of h using public key qk'''
    bits, q = qk
    try:
        bits, cn, n, cp, cq, g = get_curve(bits)
    except KeyError:
        return False
    h = truncate(h, cn)
    r, s = sig
    if 0 < r < n and 0 < s < n:
        w = inv(s, n)
        u1 = (h * w) % n
        u2 = (r * w) % n
        x, y = muladdp(cp, cq, cn, g, u1, q, u2)
        return r % n == x % n
    return False
コード例 #9
0
def verify(h, sig, qk):
    '''Verify that 'sig' is a valid signature of h using public key qk'''
    bits, q = qk
    try:
        bits, cn, n, cp, cq, g = get_curve(bits)
    except KeyError:
        return False
    h = truncate(h, cn)
    r, s = sig
    if 0 < r < n and 0 < s < n:
        w = inv(s, n)
        u1 = (h * w) % n
        u2 = (r * w) % n
        x, y = muladdp(cp, cq, cn, g, u1, q, u2)
        return r % n == x % n
    return False
コード例 #10
0
ファイル: amintos_ecdsa.py プロジェクト: ccavxx/py-search
def randkey(bits, n): '''Generate a random number (mod n) having the specified bit length'''    rb = urandom(bits / 8 + 8)  # + 64 bits as recommended in FIPS 186-3    c = 0 for r in rb:        c = (c << 8) | ord(r) return (c % (n - 1)) + 1

def keypair(bits): '''Generate a new keypair (qk, dk) with dk = private and qk = public key''' try:        bits, cn, n, cp, cq, g = get_curve(bits) except KeyError: raise ValueError, "Key size %s not implemented" % bits if n > 0:        d = randkey(bits, n)        q = mulp(cp, cq, cn, g, d) return (bits, q), (bits, d) else: raise ValueError, "Key size %s not suitable for signing" % bits

def supported_keys(): '''Return a list of all key sizes implemented for signing''' return implemented_keys(True)

def validate_public_key(qk): '''Check whether public key qk is valid'''    bits, q = qk    x, y = q    bits, cn, n, cp, cq, g = get_curve(bits) return q and 0 < x < cn and 0 < y < cn and \        element(q, cp, cq, cn) and (mulp(cp, cq, cn, q, n) == None)

def validate_private_key(dk): '''Check whether private key dk is valid'''    bits, d = dk    bits, cn, n, cp, cq, g = get_curve(bits) return 0 < d < cn

def match_keys(qk, dk): '''Check whether dk is the private key belonging to qk'''    bits, d = dk    bitz, q = qk if bits == bitz:        bits, cn, n, cp, cq, g = get_curve(bits) return mulp(cp, cq, cn, g, d) == q else: return False

def truncate(h, hmax): '''Truncate a hash to the bit size of hmax''' while h > hmax:        h >>= 1 return h

def sign(h, dk): '''Sign the numeric value h using private key dk'''    bits, d = dk    bits, cn, n, cp, cq, g = get_curve(bits)    h = truncate(h, cn)    r = s = 0 while r == 0 or s == 0:        k = randkey(bits, cn)        kinv = inv(k, n)        kg = mulp(cp, cq, cn, g, k)        r = kg[0] % n if r == 0: continue        s = (kinv * (h + r * d)) % n return r, s

def verify(h, sig, qk): '''Verify that 'sig' is a valid signature of h using public key qk'''    bits, q = qk try:        bits, cn, n, cp, cq, g = get_curve(bits) except KeyError: return False    h = truncate(h, cn)    r, s = sig if 0 < r < n and 0 < s < n:        w = inv(s, n)        u1 = (h * w) % n        u2 = (r * w) % n        x, y = muladdp(cp, cq, cn, g, u1, q, u2) return r % n == x % n return False

def hash_sign(s, dk, hashfunc='sha256'):    h = int(hashlib.new(hashfunc, s).hexdigest(), 16) return (hashfunc,) + sign(h, dk)

def hash_verify(s, sig, qk):    h = int(hashlib.new(sig[0], s).hexdigest(), 16) return verify(h, sig[1:], qk)

if __name__ == '__main__':
 import time
    testh1 = 0x0123456789ABCDEF    testh2 = 0x0123456789ABCDEE
 for k in supported_keys():        qk, dk = keypair(k)        s1 = sign(testh1, dk)        s2 = sign(testh1, (dk[0], dk[1] ^ 1))        s3 = (s1[0], s1[1] ^ 1)        qk2 = (qk[0], (qk[1][0] ^ 1, qk[1][1]))
 assert verify(testh1, s1, qk)       # everything ok -> must succeed assert not verify(testh2, s1, qk)   # modified hash       -> must fail assert not verify(testh1, s2, qk)   # different priv. key -> must fail assert not verify(testh1, s3, qk)   # modified signature  -> must fail assert not verify(testh1, s1, qk2)  # different publ. key -> must fail
 def test_perf(bits, rounds=50): '''-> (key generations, signatures, verifications) / second'''        h = 0x0123456789ABCDEF0123456789ABCDEF0123456789ABCDEF0123456789ABCDEF        d = get_curve(bits)
        t = time.time() for i in xrange(rounds):            qk, dk = keypair(bits)        tgen = time.time() - t
        t = time.time() for i in xrange(rounds):            s = sign(0, dk)        tsign = time.time() - t