2019-05-27 09:34:21 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
#
|
|
|
|
|
# mmgen = Multi-Mode GENerator, command-line Bitcoin cold storage solution
|
2021-02-19 20:09:06 +03:00
|
|
|
# Copyright (C)2013-2021 The MMGen Project <mmgen@tuta.io>
|
2019-05-27 09:34:21 +00:00
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
test.objtest_py_d.ot_common: shared data for MMGen data objects tests
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
import os
|
|
|
|
|
from mmgen.globalvars import g
|
2020-03-16 10:45:00 +00:00
|
|
|
from ..include.common import *
|
2019-05-27 09:34:21 +00:00
|
|
|
|
|
|
|
|
r32,r24,r16,r17,r18 = os.urandom(32),os.urandom(24),os.urandom(16),os.urandom(17),os.urandom(18)
|