test the existence of modules in the main script
[electrum-nvc.git] / lib / wallet.py
1 #!/usr/bin/env python
2 #
3 # Electrum - lightweight Bitcoin client
4 # Copyright (C) 2011 thomasv@gitorious
5 #
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
10 #
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with this program. If not, see <http://www.gnu.org/licenses/>.
18
19
20 import sys, base64, os, re, hashlib, copy, operator, ast, threading, random
21 import slowaes, ecdsa
22 from ecdsa.util import string_to_number, number_to_string
23
24 ############ functions from pywallet ##################### 
25
26 addrtype = 0
27
28 def hash_160(public_key):
29     try:
30         md = hashlib.new('ripemd160')
31         md.update(hashlib.sha256(public_key).digest())
32         return md.digest()
33     except:
34         import ripemd
35         md = ripemd.new(hashlib.sha256(public_key).digest())
36         return md.digest()
37
38
39 def public_key_to_bc_address(public_key):
40     h160 = hash_160(public_key)
41     return hash_160_to_bc_address(h160)
42
43 def hash_160_to_bc_address(h160):
44     vh160 = chr(addrtype) + h160
45     h = Hash(vh160)
46     addr = vh160 + h[0:4]
47     return b58encode(addr)
48
49 def bc_address_to_hash_160(addr):
50     bytes = b58decode(addr, 25)
51     return bytes[1:21]
52
53 __b58chars = '123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz'
54 __b58base = len(__b58chars)
55
56 def b58encode(v):
57     """ encode v, which is a string of bytes, to base58.                
58     """
59
60     long_value = 0L
61     for (i, c) in enumerate(v[::-1]):
62         long_value += (256**i) * ord(c)
63
64     result = ''
65     while long_value >= __b58base:
66         div, mod = divmod(long_value, __b58base)
67         result = __b58chars[mod] + result
68         long_value = div
69     result = __b58chars[long_value] + result
70
71     # Bitcoin does a little leading-zero-compression:
72     # leading 0-bytes in the input become leading-1s
73     nPad = 0
74     for c in v:
75         if c == '\0': nPad += 1
76         else: break
77
78     return (__b58chars[0]*nPad) + result
79
80 def b58decode(v, length):
81     """ decode v into a string of len bytes
82     """
83     long_value = 0L
84     for (i, c) in enumerate(v[::-1]):
85         long_value += __b58chars.find(c) * (__b58base**i)
86
87     result = ''
88     while long_value >= 256:
89         div, mod = divmod(long_value, 256)
90         result = chr(mod) + result
91         long_value = div
92     result = chr(long_value) + result
93
94     nPad = 0
95     for c in v:
96         if c == __b58chars[0]: nPad += 1
97         else: break
98
99     result = chr(0)*nPad + result
100     if length is not None and len(result) != length:
101         return None
102
103     return result
104
105
106 def Hash(data):
107     return hashlib.sha256(hashlib.sha256(data).digest()).digest()
108
109 def EncodeBase58Check(vchIn):
110     hash = Hash(vchIn)
111     return b58encode(vchIn + hash[0:4])
112
113 def DecodeBase58Check(psz):
114     vchRet = b58decode(psz, None)
115     key = vchRet[0:-4]
116     csum = vchRet[-4:]
117     hash = Hash(key)
118     cs32 = hash[0:4]
119     if cs32 != csum:
120         return None
121     else:
122         return key
123
124 def PrivKeyToSecret(privkey):
125     return privkey[9:9+32]
126
127 def SecretToASecret(secret):
128     vchIn = chr(addrtype+128) + secret
129     return EncodeBase58Check(vchIn)
130
131 def ASecretToSecret(key):
132     vch = DecodeBase58Check(key)
133     if vch and vch[0] == chr(addrtype+128):
134         return vch[1:]
135     else:
136         return False
137
138 ########### end pywallet functions #######################
139
140 # URL decode
141 _ud = re.compile('%([0-9a-hA-H]{2})', re.MULTILINE)
142 urldecode = lambda x: _ud.sub(lambda m: chr(int(m.group(1), 16)), x)
143
144
145 def int_to_hex(i, length=1):
146     s = hex(i)[2:].rstrip('L')
147     s = "0"*(2*length - len(s)) + s
148     return s.decode('hex')[::-1].encode('hex')
149
150
151 # AES
152 EncodeAES = lambda secret, s: base64.b64encode(aes.encryptData(secret,s))
153 DecodeAES = lambda secret, e: aes.decryptData(secret, base64.b64decode(e))
154
155
156
157 # secp256k1, http://www.oid-info.com/get/1.3.132.0.10
158 _p = 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFC2FL
159 _r = 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141L
160 _b = 0x0000000000000000000000000000000000000000000000000000000000000007L
161 _a = 0x0000000000000000000000000000000000000000000000000000000000000000L
162 _Gx = 0x79BE667EF9DCBBAC55A06295CE870B07029BFCDB2DCE28D959F2815B16F81798L
163 _Gy = 0x483ada7726a3c4655da4fbfc0e1108a8fd17b448a68554199c47d08ffb10d4b8L
164 curve_secp256k1 = ecdsa.ellipticcurve.CurveFp( _p, _a, _b )
165 generator_secp256k1 = ecdsa.ellipticcurve.Point( curve_secp256k1, _Gx, _Gy, _r )
166 oid_secp256k1 = (1,3,132,0,10)
167 SECP256k1 = ecdsa.curves.Curve("SECP256k1", curve_secp256k1, generator_secp256k1, oid_secp256k1 ) 
168
169
170 def filter(s): 
171     out = re.sub('( [^\n]*|)\n','',s)
172     out = out.replace(' ','')
173     out = out.replace('\n','')
174     return out
175
176 def raw_tx( inputs, outputs, for_sig = None ):
177     s  = int_to_hex(1,4)                                     +   '     version\n' 
178     s += int_to_hex( len(inputs) )                           +   '     number of inputs\n'
179     for i in range(len(inputs)):
180         _, _, p_hash, p_index, p_script, pubkey, sig = inputs[i]
181         s += p_hash.decode('hex')[::-1].encode('hex')        +  '     prev hash\n'
182         s += int_to_hex(p_index,4)                           +  '     prev index\n'
183         if for_sig is None:
184             sig = sig + chr(1)                               # hashtype
185             script  = int_to_hex( len(sig))                  +  '     push %d bytes\n'%len(sig)
186             script += sig.encode('hex')                      +  '     sig\n'
187             pubkey = chr(4) + pubkey
188             script += int_to_hex( len(pubkey))               +  '     push %d bytes\n'%len(pubkey)
189             script += pubkey.encode('hex')                   +  '     pubkey\n'
190         elif for_sig==i:
191             script = p_script                                +  '     scriptsig \n'
192         else:
193             script=''
194         s += int_to_hex( len(filter(script))/2 )             +  '     script length \n'
195         s += script
196         s += "ffffffff"                                      +  '     sequence\n'
197     s += int_to_hex( len(outputs) )                          +  '     number of outputs\n'
198     for output in outputs:
199         addr, amount = output
200         s += int_to_hex( amount, 8)                          +  '     amount: %d\n'%amount 
201         script = '76a9'                                      # op_dup, op_hash_160
202         script += '14'                                       # push 0x14 bytes
203         script += bc_address_to_hash_160(addr).encode('hex')
204         script += '88ac'                                     # op_equalverify, op_checksig
205         s += int_to_hex( len(filter(script))/2 )             +  '     script length \n'
206         s += script                                          +  '     script \n'
207     s += int_to_hex(0,4)                                     # lock time
208     if for_sig is not None: s += int_to_hex(1, 4)            # hash type
209     return s
210
211
212
213
214 def format_satoshis(x, is_diff=False, num_zeros = 0):
215     from decimal import Decimal
216     s = str( Decimal(x) /100000000 )
217     if is_diff and x>0:
218         s = "+" + s
219     if not '.' in s: s += '.'
220     p = s.find('.')
221     s += "0"*( 1 + num_zeros - ( len(s) - p ))
222     s += " "*( 9 - ( len(s) - p ))
223     s = " "*( 5 - ( p )) + s
224     return s
225
226
227 from version import ELECTRUM_VERSION, SEED_VERSION
228 from interface import DEFAULT_SERVERS
229
230
231
232
233 class Wallet:
234     def __init__(self, gui_callback = lambda: None):
235
236         self.electrum_version = ELECTRUM_VERSION
237         self.seed_version = SEED_VERSION
238         self.gui_callback = gui_callback
239
240         self.gap_limit = 5           # configuration
241         self.fee = 100000
242         self.num_zeros = 0
243         self.master_public_key = ''
244
245         # saved fields
246         self.use_encryption = False
247         self.addresses = []          # receiving addresses visible for user
248         self.change_addresses = []   # addresses used as change
249         self.seed = ''               # encrypted
250         self.history = {}
251         self.labels = {}             # labels for addresses and transactions
252         self.aliases = {}            # aliases for addresses
253         self.authorities = {}        # trusted addresses
254         self.frozen_addresses = []
255         
256         self.receipts = {}           # signed URIs
257         self.receipt = None          # next receipt
258         self.addressbook = []        # outgoing addresses, for payments
259
260         # not saved
261         self.tx_history = {}
262
263         self.imported_keys = {}
264         self.remote_url = None
265
266         self.was_updated = True
267         self.blocks = -1
268         self.banner = ''
269
270         # there is a difference between self.up_to_date and self.is_up_to_date()
271         # self.is_up_to_date() returns true when all requests have been answered and processed
272         # self.up_to_date is true when the wallet is synchronized (stronger requirement)
273         self.up_to_date_event = threading.Event()
274         self.up_to_date_event.clear()
275         self.up_to_date = False
276         self.lock = threading.Lock()
277         self.tx_event = threading.Event()
278
279         self.pick_random_server()
280
281
282
283     def pick_random_server(self):
284         self.server = random.choice( DEFAULT_SERVERS )         # random choice when the wallet is created
285
286     def is_up_to_date(self):
287         return self.interface.responses.empty() and not self.interface.unanswered_requests
288
289     def set_server(self, server):
290         # raise an error if the format isnt correct
291         a,b,c = server.split(':')
292         b = int(b)
293         assert c in ['t','h','n']
294         # set the server
295         if server != self.server:
296             self.server = server
297             self.save()
298             self.interface.is_connected = False  # this exits the polling loop
299             self.interface.poke()
300
301     def set_path(self, wallet_path):
302
303         if wallet_path is not None:
304             self.path = wallet_path
305         else:
306             # backward compatibility: look for wallet file in the default data directory
307             if "HOME" in os.environ:
308                 wallet_dir = os.path.join( os.environ["HOME"], '.electrum')
309             elif "LOCALAPPDATA" in os.environ:
310                 wallet_dir = os.path.join( os.environ["LOCALAPPDATA"], 'Electrum' )
311             elif "APPDATA" in os.environ:
312                 wallet_dir = os.path.join( os.environ["APPDATA"], 'Electrum' )
313             else:
314                 raise BaseException("No home directory found in environment variables.")
315
316             if not os.path.exists( wallet_dir ): os.mkdir( wallet_dir )
317             self.path = os.path.join( wallet_dir, 'electrum.dat' )
318
319     def import_key(self, keypair, password):
320         address, key = keypair.split(':')
321         if not self.is_valid(address): return False
322         if address in self.all_addresses(): return False
323         b = ASecretToSecret( key )
324         if not b: return False
325         secexp = int( b.encode('hex'), 16)
326         private_key = ecdsa.SigningKey.from_secret_exponent( secexp, curve=SECP256k1 )
327         # sanity check
328         public_key = private_key.get_verifying_key()
329         if not address == public_key_to_bc_address( '04'.decode('hex') + public_key.to_string() ): return False
330         self.imported_keys[address] = self.pw_encode( key, password )
331         return True
332
333     def new_seed(self, password):
334         seed = "%032x"%ecdsa.util.randrange( pow(2,128) )
335         #self.init_mpk(seed)
336         # encrypt
337         self.seed = self.pw_encode( seed, password )
338
339
340     def init_mpk(self,seed):
341         # public key
342         curve = SECP256k1
343         secexp = self.stretch_key(seed)
344         master_private_key = ecdsa.SigningKey.from_secret_exponent( secexp, curve = SECP256k1 )
345         self.master_public_key = master_private_key.get_verifying_key().to_string()
346
347     def all_addresses(self):
348         return self.addresses + self.change_addresses + self.imported_keys.keys()
349
350     def is_mine(self, address):
351         return address in self.all_addresses()
352
353     def is_change(self, address):
354         return address in self.change_addresses
355
356     def is_valid(self,addr):
357         ADDRESS_RE = re.compile('[1-9A-HJ-NP-Za-km-z]{26,}\\Z')
358         if not ADDRESS_RE.match(addr): return False
359         try:
360             h = bc_address_to_hash_160(addr)
361         except:
362             return False
363         return addr == hash_160_to_bc_address(h)
364
365     def stretch_key(self,seed):
366         oldseed = seed
367         for i in range(100000):
368             seed = hashlib.sha256(seed + oldseed).digest()
369         return string_to_number( seed )
370
371     def get_sequence(self,n,for_change):
372         return string_to_number( Hash( "%d:%d:"%(n,for_change) + self.master_public_key ) )
373
374     def get_private_key(self, address, password):
375         """  Privatekey(type,n) = Master_private_key + H(n|S|type)  """
376         order = generator_secp256k1.order()
377         
378         if address in self.imported_keys.keys():
379             b = self.pw_decode( self.imported_keys[address], password )
380             b = ASecretToSecret( b )
381             secexp = int( b.encode('hex'), 16)
382         else:
383             if address in self.addresses:
384                 n = self.addresses.index(address)
385                 for_change = False
386             elif address in self.change_addresses:
387                 n = self.change_addresses.index(address)
388                 for_change = True
389             else:
390                 raise BaseException("unknown address")
391             try:
392                 seed = self.pw_decode( self.seed, password)
393             except:
394                 raise BaseException("Invalid password")
395             secexp = self.stretch_key(seed)
396             secexp = ( secexp + self.get_sequence(n,for_change) ) % order
397
398         pk = number_to_string(secexp,order)
399         return pk
400
401     def msg_magic(self, message):
402         return "\x18Bitcoin Signed Message:\n" + chr( len(message) ) + message
403
404     def sign_message(self, address, message, password):
405         private_key = ecdsa.SigningKey.from_string( self.get_private_key(address, password), curve = SECP256k1 )
406         public_key = private_key.get_verifying_key()
407         signature = private_key.sign_digest( Hash( self.msg_magic( message ) ), sigencode = ecdsa.util.sigencode_string )
408         assert public_key.verify_digest( signature, Hash( self.msg_magic( message ) ), sigdecode = ecdsa.util.sigdecode_string)
409         for i in range(4):
410             sig = base64.b64encode( chr(27+i) + signature )
411             try:
412                 self.verify_message( address, sig, message)
413                 return sig
414             except:
415                 continue
416         else:
417             raise BaseException("error: cannot sign message")
418         
419             
420     def verify_message(self, address, signature, message):
421         """ See http://www.secg.org/download/aid-780/sec1-v2.pdf for the math """
422         from ecdsa import numbertheory, ellipticcurve, util
423         import msqr
424         curve = curve_secp256k1
425         G = generator_secp256k1
426         order = G.order()
427         # extract r,s from signature
428         sig = base64.b64decode(signature)
429         if len(sig) != 65: raise BaseException("Wrong encoding")
430         r,s = util.sigdecode_string(sig[1:], order)
431         recid = ord(sig[0]) - 27
432         # 1.1
433         x = r + (recid/2) * order
434         # 1.3
435         alpha = ( x * x * x  + curve.a() * x + curve.b() ) % curve.p()
436         beta = msqr.modular_sqrt(alpha, curve.p())
437         y = beta if (beta - recid) % 2 == 0 else curve.p() - beta
438         # 1.4 the constructor checks that nR is at infinity
439         R = ellipticcurve.Point(curve, x, y, order)
440         # 1.5 compute e from message:
441         h = Hash( self.msg_magic( message ) )
442         e = string_to_number(h)
443         minus_e = -e % order
444         # 1.6 compute Q = r^-1 (sR - eG)
445         inv_r = numbertheory.inverse_mod(r,order)
446         Q = inv_r * ( s * R + minus_e * G )
447         public_key = ecdsa.VerifyingKey.from_public_point( Q, curve = SECP256k1 )
448         # check that Q is the public key
449         public_key.verify_digest( sig[1:], h, sigdecode = ecdsa.util.sigdecode_string)
450         # check that we get the original signing address
451         addr = public_key_to_bc_address( '04'.decode('hex') + public_key.to_string() )
452         # print addr
453         if address != addr:
454             print "bad signature"
455             raise BaseException("Bad signature")
456     
457
458     def create_new_address(self, for_change):
459         """   Publickey(type,n) = Master_public_key + H(n|S|type)*point  """
460         curve = SECP256k1
461         n = len(self.change_addresses) if for_change else len(self.addresses)
462         z = self.get_sequence(n,for_change)
463         master_public_key = ecdsa.VerifyingKey.from_string( self.master_public_key, curve = SECP256k1 )
464         pubkey_point = master_public_key.pubkey.point + z*curve.generator
465         public_key2 = ecdsa.VerifyingKey.from_public_point( pubkey_point, curve = SECP256k1 )
466         address = public_key_to_bc_address( '04'.decode('hex') + public_key2.to_string() )
467         if for_change:
468             self.change_addresses.append(address)
469         else:
470             self.addresses.append(address)
471
472         self.history[address] = []
473         print address
474         return address
475
476
477
478     def synchronize(self):
479         if not self.master_public_key:
480             return []
481
482         new_addresses = []
483         while True:
484             if self.change_addresses == []:
485                 new_addresses.append( self.create_new_address(True) )
486                 continue
487             a = self.change_addresses[-1]
488             if self.history.get(a):
489                 new_addresses.append( self.create_new_address(True) )
490             else:
491                 break
492
493         n = self.gap_limit
494         while True:
495             if len(self.addresses) < n:
496                 new_addresses.append( self.create_new_address(False) )
497                 continue
498             if map( lambda a: self.history.get(a), self.addresses[-n:] ) == n*[[]]:
499                 break
500             else:
501                 new_addresses.append( self.create_new_address(False) )
502
503         if self.remote_url:
504             num = self.get_remote_number()
505             while len(self.addresses)<num:
506                 new_addresses.append( self.create_new_address(False) )
507
508         return new_addresses
509
510
511     def get_remote_number(self):
512         import jsonrpclib
513         server = jsonrpclib.Server(self.remote_url)
514         out = server.getnum()
515         return out
516
517     def get_remote_mpk(self):
518         import jsonrpclib
519         server = jsonrpclib.Server(self.remote_url)
520         out = server.getkey()
521         return out
522
523     def is_found(self):
524         return (len(self.change_addresses) > 1 ) or ( len(self.addresses) > self.gap_limit )
525
526     def fill_addressbook(self):
527         for tx in self.tx_history.values():
528             if tx['value']<0:
529                 for i in tx['outputs']:
530                     if not self.is_mine(i) and i not in self.addressbook:
531                         self.addressbook.append(i)
532         # redo labels
533         self.update_tx_labels()
534
535
536     def save(self):
537         s = {
538             'seed_version':self.seed_version,
539             'use_encryption':self.use_encryption,
540             'master_public_key': self.master_public_key.encode('hex'),
541             'fee':self.fee,
542             'server':self.server,
543             'seed':self.seed,
544             'addresses':self.addresses,
545             'change_addresses':self.change_addresses,
546             'history':self.history, 
547             'labels':self.labels,
548             'contacts':self.addressbook,
549             'imported_keys':self.imported_keys,
550             'aliases':self.aliases,
551             'authorities':self.authorities,
552             'receipts':self.receipts,
553             'num_zeros':self.num_zeros,
554             'frozen_addresses':self.frozen_addresses,
555             }
556         f = open(self.path,"w")
557         f.write( repr(s) )
558         f.close()
559
560     def read(self):
561         import interface
562
563         upgrade_msg = """This wallet seed is deprecated. Please run upgrade.py for a diagnostic."""
564         self.file_exists = False
565         try:
566             f = open(self.path,"r")
567             data = f.read()
568             f.close()
569         except:
570             return
571         data = interface.old_to_new(data)
572         try:
573             d = ast.literal_eval( data )
574             self.seed_version = d.get('seed_version')
575             self.master_public_key = d.get('master_public_key').decode('hex')
576             self.use_encryption = d.get('use_encryption')
577             self.fee = int( d.get('fee') )
578             self.seed = d.get('seed')
579             self.server = d.get('server')
580             #blocks = d.get('blocks')
581             self.addresses = d.get('addresses')
582             self.change_addresses = d.get('change_addresses')
583             self.history = d.get('history')
584             self.labels = d.get('labels')
585             self.addressbook = d.get('contacts')
586             self.imported_keys = d.get('imported_keys',{})
587             self.aliases = d.get('aliases',{})
588             self.authorities = d.get('authorities',{})
589             self.receipts = d.get('receipts',{})
590             self.num_zeros = d.get('num_zeros',0)
591             self.frozen_addresses = d.get('frozen_addresses',[])
592         except:
593             raise BaseException("cannot read wallet file")
594
595         self.update_tx_history()
596
597         if self.seed_version != SEED_VERSION:
598             raise BaseException(upgrade_msg)
599
600         if self.remote_url: assert self.master_public_key.encode('hex') == self.get_remote_mpk()
601
602         self.file_exists = True
603
604
605         
606
607     def get_addr_balance(self, addr):
608         assert self.is_mine(addr)
609         h = self.history.get(addr,[])
610         c = u = 0
611         for item in h:
612             v = item['value']
613             if item['height']:
614                 c += v
615             else:
616                 u += v
617         return c, u
618
619     def get_balance(self):
620         conf = unconf = 0
621         for addr in self.all_addresses(): 
622             c, u = self.get_addr_balance(addr)
623             conf += c
624             unconf += u
625         return conf, unconf
626
627
628     def choose_tx_inputs( self, amount, fixed_fee, from_addr = None ):
629         """ todo: minimize tx size """
630         total = 0
631         fee = self.fee if fixed_fee is None else fixed_fee
632
633         coins = []
634         domain = [from_addr] if from_addr else self.all_addresses()
635         for i in self.frozen_addresses:
636             if i in domain: domain.remove(i)
637
638         for addr in domain:
639             h = self.history.get(addr)
640             if h is None: continue
641             for item in h:
642                 if item.get('raw_output_script'):
643                     coins.append( (addr,item))
644
645         coins = sorted( coins, key = lambda x: x[1]['timestamp'] )
646         inputs = []
647         for c in coins: 
648             addr, item = c
649             v = item.get('value')
650             total += v
651             inputs.append((addr, v, item['tx_hash'], item['index'], item['raw_output_script'], None, None) )
652             fee = self.fee*len(inputs) if fixed_fee is None else fixed_fee
653             if total >= amount + fee: break
654         else:
655             #print "not enough funds: %d %d"%(total, fee)
656             inputs = []
657         return inputs, total, fee
658
659     def choose_tx_outputs( self, to_addr, amount, fee, total, change_addr=None ):
660         outputs = [ (to_addr, amount) ]
661         change_amount = total - ( amount + fee )
662         if change_amount != 0:
663             # normally, the update thread should ensure that the last change address is unused
664             if not change_addr:
665                 change_addr = self.change_addresses[-1]
666             outputs.append( ( change_addr,  change_amount) )
667         return outputs
668
669     def sign_inputs( self, inputs, outputs, password ):
670         s_inputs = []
671         for i in range(len(inputs)):
672             addr, v, p_hash, p_pos, p_scriptPubKey, _, _ = inputs[i]
673             private_key = ecdsa.SigningKey.from_string( self.get_private_key(addr, password), curve = SECP256k1 )
674             public_key = private_key.get_verifying_key()
675             pubkey = public_key.to_string()
676             tx = filter( raw_tx( inputs, outputs, for_sig = i ) )
677             sig = private_key.sign_digest( Hash( tx.decode('hex') ), sigencode = ecdsa.util.sigencode_der )
678             assert public_key.verify_digest( sig, Hash( tx.decode('hex') ), sigdecode = ecdsa.util.sigdecode_der)
679             s_inputs.append( (addr, v, p_hash, p_pos, p_scriptPubKey, pubkey, sig) )
680         return s_inputs
681
682     def pw_encode(self, s, password):
683         if password:
684             secret = Hash(password)
685             return EncodeAES(secret, s)
686         else:
687             return s
688
689     def pw_decode(self, s, password):
690         if password is not None:
691             secret = Hash(password)
692             d = DecodeAES(secret, s)
693             if s == self.seed:
694                 try:
695                     d.decode('hex')
696                 except:
697                     raise BaseException("Invalid password")
698             return d
699         else:
700             return s
701
702     def get_status(self, address):
703         h = self.history.get(address)
704         if not h:
705             status = None
706         else:
707             lastpoint = h[-1]
708             status = lastpoint['block_hash']
709             if status == 'mempool': 
710                 status = status + ':%d'% len(h)
711         return status
712
713     def receive_status_callback(self, addr, status):
714         with self.lock:
715             if self.get_status(addr) != status:
716                 #print "updating status for", addr, status
717                 self.interface.get_history(addr)
718
719     def receive_history_callback(self, addr, data): 
720         #print "updating history for", addr
721         with self.lock:
722             self.history[addr] = data
723             self.update_tx_history()
724             self.save()
725
726     def get_tx_history(self):
727         lines = self.tx_history.values()
728         lines = sorted(lines, key=operator.itemgetter("timestamp"))
729         return lines
730
731     def update_tx_history(self):
732         self.tx_history= {}
733         for addr in self.all_addresses():
734             h = self.history.get(addr)
735             if h is None: continue
736             for tx in h:
737                 tx_hash = tx['tx_hash']
738                 line = self.tx_history.get(tx_hash)
739                 if not line:
740                     self.tx_history[tx_hash] = copy.copy(tx)
741                     line = self.tx_history.get(tx_hash)
742                 else:
743                     line['value'] += tx['value']
744                 if line['height'] == 0:
745                     line['timestamp'] = 1e12
746         self.update_tx_labels()
747
748     def update_tx_labels(self):
749         for tx in self.tx_history.values():
750             default_label = ''
751             if tx['value']<0:
752                 for o_addr in tx['outputs']:
753                     if not self.is_change(o_addr):
754                         dest_label = self.labels.get(o_addr)
755                         if dest_label:
756                             default_label = 'to: ' + dest_label
757                         else:
758                             default_label = 'to: ' + o_addr
759             else:
760                 for o_addr in tx['outputs']:
761                     if self.is_mine(o_addr) and not self.is_change(o_addr):
762                         dest_label = self.labels.get(o_addr)
763                         if dest_label:
764                             default_label = 'at: ' + dest_label
765                         else:
766                             default_label = 'at: ' + o_addr
767             tx['default_label'] = default_label
768
769     def mktx(self, to_address, amount, label, password, fee=None, change_addr=None, from_addr= None):
770         if not self.is_valid(to_address):
771             raise BaseException("Invalid address")
772         inputs, total, fee = self.choose_tx_inputs( amount, fee, from_addr )
773         if not inputs:
774             raise BaseException("Not enough funds")
775         outputs = self.choose_tx_outputs( to_address, amount, fee, total, change_addr )
776         s_inputs = self.sign_inputs( inputs, outputs, password )
777
778         tx = filter( raw_tx( s_inputs, outputs ) )
779         if to_address not in self.addressbook:
780             self.addressbook.append(to_address)
781         if label: 
782             tx_hash = Hash(tx.decode('hex') )[::-1].encode('hex')
783             self.labels[tx_hash] = label
784
785         return tx
786
787     def sendtx(self, tx):
788         tx_hash = Hash(tx.decode('hex') )[::-1].encode('hex')
789         self.tx_event.clear()
790         self.interface.send([('blockchain.transaction.broadcast', [tx])])
791         self.tx_event.wait()
792         out = self.tx_result 
793         if out != tx_hash:
794             return False, "error: " + out
795         if self.receipt:
796             self.receipts[tx_hash] = self.receipt
797             self.receipt = None
798         return True, out
799
800
801     def read_alias(self, alias):
802         # this might not be the right place for this function.
803         import urllib
804
805         m1 = re.match('([\w\-\.]+)@((\w[\w\-]+\.)+[\w\-]+)', alias)
806         m2 = re.match('((\w[\w\-]+\.)+[\w\-]+)', alias)
807         if m1:
808             url = 'http://' + m1.group(2) + '/bitcoin.id/' + m1.group(1) 
809         elif m2:
810             url = 'http://' + alias + '/bitcoin.id'
811         else:
812             return ''
813         try:
814             lines = urllib.urlopen(url).readlines()
815         except:
816             return ''
817
818         # line 0
819         line = lines[0].strip().split(':')
820         if len(line) == 1:
821             auth_name = None
822             target = signing_addr = line[0]
823         else:
824             target, auth_name, signing_addr, signature = line
825             msg = "alias:%s:%s:%s"%(alias,target,auth_name)
826             print msg, signature
827             self.verify_message(signing_addr, signature, msg)
828         
829         # other lines are signed updates
830         for line in lines[1:]:
831             line = line.strip()
832             if not line: continue
833             line = line.split(':')
834             previous = target
835             print repr(line)
836             target, signature = line
837             self.verify_message(previous, signature, "alias:%s:%s"%(alias,target))
838
839         if not self.is_valid(target):
840             raise BaseException("Invalid bitcoin address")
841
842         return target, signing_addr, auth_name
843
844     def update_password(self, seed, new_password):
845         if new_password == '': new_password = None
846         self.use_encryption = (new_password != None)
847         self.seed = self.pw_encode( seed, new_password)
848         for k in self.imported_keys.keys():
849             a = self.imported_keys[k]
850             b = self.pw_decode(a, password)
851             c = self.pw_encode(b, new_password)
852             self.imported_keys[k] = c
853         self.save()
854
855     def get_alias(self, alias, interactive = False, show_message=None, question = None):
856         try:
857             target, signing_address, auth_name = self.read_alias(alias)
858         except BaseException, e:
859             # raise exception if verify fails (verify the chain)
860             if interactive:
861                 show_message("Alias error: " + e.message)
862             return
863
864         print target, signing_address, auth_name
865
866         if auth_name is None:
867             a = self.aliases.get(alias)
868             if not a:
869                 msg = "Warning: the alias '%s' is self-signed.\nThe signing address is %s.\n\nDo you want to add this alias to your list of contacts?"%(alias,signing_address)
870                 if interactive and question( msg ):
871                     self.aliases[alias] = (signing_address, target)
872                 else:
873                     target = None
874             else:
875                 if signing_address != a[0]:
876                     msg = "Warning: the key of alias '%s' has changed since your last visit! It is possible that someone is trying to do something nasty!!!\nDo you accept to change your trusted key?"%alias
877                     if interactive and question( msg ):
878                         self.aliases[alias] = (signing_address, target)
879                     else:
880                         target = None
881         else:
882             if signing_address not in self.authorities.keys():
883                 msg = "The alias: '%s' links to %s\n\nWarning: this alias was signed by an unknown key.\nSigning authority: %s\nSigning address: %s\n\nDo you want to add this key to your list of trusted keys?"%(alias,target,auth_name,signing_address)
884                 if interactive and question( msg ):
885                     self.authorities[signing_address] = auth_name
886                 else:
887                     target = None
888
889         if target:
890             self.aliases[alias] = (signing_address, target)
891             
892         return target
893
894
895     def parse_url(self, url, show_message, question):
896         o = url[8:].split('?')
897         address = o[0]
898         if len(o)>1:
899             params = o[1].split('&')
900         else:
901             params = []
902
903         amount = label = message = signature = identity = ''
904         for p in params:
905             k,v = p.split('=')
906             uv = urldecode(v)
907             if k == 'amount': amount = uv
908             elif k == 'message': message = uv
909             elif k == 'label': label = uv
910             elif k == 'signature':
911                 identity, signature = uv.split(':')
912                 url = url.replace('&%s=%s'%(k,v),'')
913             else: 
914                 print k,v
915
916         if signature:
917             if re.match('^(|([\w\-\.]+)@)((\w[\w\-]+\.)+[\w\-]+)$', identity):
918                 signing_address = self.get_alias(identity, True, show_message, question)
919             elif self.is_valid(identity):
920                 signing_address = identity
921             else:
922                 signing_address = None
923             if not signing_address:
924                 return
925             try:
926                 self.verify_message(signing_address, signature, url )
927                 self.receipt = (signing_address, signature, url)
928             except:
929                 show_message('Warning: the URI contains a bad signature.\nThe identity of the recipient cannot be verified.')
930                 address = amount = label = identity = message = ''
931
932         if re.match('^(|([\w\-\.]+)@)((\w[\w\-]+\.)+[\w\-]+)$', address):
933             payto_address = self.get_alias(address, True, show_message, question)
934             if payto_address:
935                 address = address + ' <' + payto_address + '>'
936
937         return address, amount, label, message, signature, identity, url
938
939
940     def update(self):
941         self.interface.poke()
942         self.up_to_date_event.wait()
943
944
945     def start_session(self, interface):
946         self.interface = interface
947         self.interface.send([('server.banner',[]), ('blockchain.numblocks.subscribe',[]), ('server.peers.subscribe',[])])
948         self.interface.subscribe(self.all_addresses())
949
950
951
952