deanonymity
index
/home/dani/Development/code/notabug/master/experiments/anonycoin/anonycoin/deanonymity.py

Anonycoin --- Bitcoin simulator with anonymity throught group signature
 
Copyright © 2016 Daniel Pimentel <d4n1@member.fsf.org>
 
This file is part Anonycoin.
 
Anonycoin is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or (at
your option) any later version.
 
Anonycoin is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.
 
You should have received a copy of the GNU General Public License
along with Anonycoin.  If not, see <http://www.gnu.org/licenses/>.

 
Functions
       
deanonymity()
Bitcoin deanonymity technics.
blockchain - blockchains generated by miners
reader(...)
csv_reader = reader(iterable [, dialect='excel']
                        [optional keyword args])
    for row in csv_reader:
        process(row)
 
The "iterable" argument can be any object that returns a line
of input for each iteration, such as a file object or a list.  The
optional "dialect" parameter is discussed below.  The function
also accepts optional keyword arguments which override settings
provided by the dialect.
 
The returned object is an iterator.  Each iteration returns a row
of the CSV file (which can span multiple input lines):
tracking(blockchain)