Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(12) | Call(6) | Derive(0) | Import(6)
def is_b58check(b58_s): version_byte, binary_s, checksum = b58check_unpack(b58_s) return (b58_s == b58check_encode(binary_s, version_byte=ord(version_byte)))
from characters.hex import is_hex from .b58check import is_b58check, b58check_decode def is_secret_exponent(val, curve_order):
def is_wif_pk(val): return (len(val) >= 51 and len(val) <= 51 and is_b58check(val)) def is_b58check_address(val): return is_b58check(val)
src/c/o/Coins-0.2.2/coins/utils.py Coins(Download)
""" Format checking """ from .b58check import is_b58check, b58check_decode def is_hex(s):
def is_wif_pk(val): return (len(val) >= 51 and len(val) <= 51 and is_b58check(val)) def is_b58check_address(val): return is_b58check(val)
src/c/o/coinkit-HEAD/coinkit/utils.py coinkit(Download)
from characters.hex import is_hex from .b58check import is_b58check, b58check_decode def is_secret_exponent(val, curve_order):
def is_wif_pk(val): return (len(val) >= 51 and len(val) <= 51 and is_b58check(val)) def is_b58check_address(val): return is_b58check(val)
src/c/o/coinkit-0.4.1/coinkit/__init__.py coinkit(Download)
from .entropy import random_secret_exponent from .passphrase import random_256bit_passphrase, random_160bit_passphrase from .b58check import b58check_encode, b58check_decode, b58check_unpack, \ b58check_version_byte, is_b58check from .utils import is_secret_exponent, is_256bit_hex_string, \
src/c/o/Coins-0.2.2/coins/__init__.py Coins(Download)
from .entropy import random_secret_exponent from .passphrase import random_256bit_passphrase, random_160bit_passphrase from .b58check import b58check_encode, b58check_decode, b58check_unpack, \ b58check_version_byte, is_b58check from .utils import is_hex, is_secret_exponent, is_256bit_hex_string, \
src/c/o/coinkit-HEAD/coinkit/__init__.py coinkit(Download)
from .entropy import random_secret_exponent from .passphrase import random_256bit_passphrase, random_160bit_passphrase from .b58check import b58check_encode, b58check_decode, b58check_unpack, \ b58check_version_byte, is_b58check from .utils import is_secret_exponent, is_256bit_hex_string, \