コード例 #1
0
ファイル: lbrycrd.py プロジェクト: lbryio/lbryum
def is_minikey(text):
    # Minikeys are typically 22 or 30 characters, but this routine
    # permits any length of 20 or more provided the minikey is valid.
    # A valid minikey must begin with an 'S', be in base58, and when
    # suffixed with '?' have its SHA256 hash begin with a zero byte.
    # They are widely used in Casascius physical bitoins.
    return (len(text) >= 20 and text[0] == 'S'
            and all(c in B58_CHARS for c in text)
            and ord(sha256(text + '?')[0]) == 0)
コード例 #2
0
ファイル: lbrycrd.py プロジェクト: todd1251/lbryum
def is_minikey(text):
    # Minikeys are typically 22 or 30 characters, but this routine
    # permits any length of 20 or more provided the minikey is valid.
    # A valid minikey must begin with an 'S', be in base58, and when
    # suffixed with '?' have its SHA256 hash begin with a zero byte.
    # They are widely used in Casascius physical bitoins.
    return (len(text) >= 20 and text[0] == 'S'
            and all(c in __b58chars for c in text)
            and ord(sha256(text + '?')[0]) == 0)
コード例 #3
0
ファイル: lbrycrd.py プロジェクト: todd1251/lbryum
def minikey_to_private_key(text):
    return sha256(text)
コード例 #4
0
ファイル: coinchooser.py プロジェクト: lbryio/lbryum
 def get_bytes(self, n):
     while len(self.pool) < n:
         self.pool.extend(self.sha)
         self.sha = sha256(self.sha)
     result, self.pool = self.pool[:n], self.pool[n:]
     return result
コード例 #5
0
ファイル: coinchooser.py プロジェクト: lbryio/lbryum
 def __init__(self, seed):
     self.sha = sha256(seed)
     self.pool = bytearray()
コード例 #6
0
ファイル: coinchooser.py プロジェクト: todd1251/lbryum
 def get_bytes(self, n):
     while len(self.pool) < n:
         self.pool.extend(self.sha)
         self.sha = sha256(self.sha)
     result, self.pool = self.pool[:n], self.pool[n:]
     return result
コード例 #7
0
ファイル: coinchooser.py プロジェクト: todd1251/lbryum
 def __init__(self, seed):
     self.sha = sha256(seed)
     self.pool = bytearray()
コード例 #8
0
ファイル: lbrycrd.py プロジェクト: lbryio/lbryum
def minikey_to_private_key(text):
    return sha256(text)