本文整理匯總了Python中web3.Web3.sha3方法的典型用法代碼示例。如果您正苦於以下問題:Python Web3.sha3方法的具體用法?Python Web3.sha3怎麽用?Python Web3.sha3使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類web3.Web3
的用法示例。
在下文中一共展示了Web3.sha3方法的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_sha3_raise_if_hexstr_and_text
# 需要導入模塊: from web3 import Web3 [as 別名]
# 或者: from web3.Web3 import sha3 [as 別名]
def test_sha3_raise_if_hexstr_and_text():
with pytest.raises(TypeError):
Web3.sha3(hexstr='0x', text='')
示例2: test_sha3_raise_if_no_args
# 需要導入模塊: from web3 import Web3 [as 別名]
# 或者: from web3.Web3 import sha3 [as 別名]
def test_sha3_raise_if_no_args():
with pytest.raises(TypeError):
Web3.sha3()
示例3: test_sha3_raise_if_primitive_and
# 需要導入模塊: from web3 import Web3 [as 別名]
# 或者: from web3.Web3 import sha3 [as 別名]
def test_sha3_raise_if_primitive_and(kwargs):
# must not set more than one input
with pytest.raises(TypeError):
Web3.sha3('', **kwargs)
示例4: test_sha3_primitive
# 需要導入模塊: from web3 import Web3 [as 別名]
# 或者: from web3.Web3 import sha3 [as 別名]
def test_sha3_primitive(primitive, digest):
assert Web3.sha3(primitive) == digest
示例5: test_sha3_primitive_invalid
# 需要導入模塊: from web3 import Web3 [as 別名]
# 或者: from web3.Web3 import sha3 [as 別名]
def test_sha3_primitive_invalid(primitive, exception):
with pytest.raises(exception):
Web3.sha3(primitive)
示例6: test_sha3_hexstr
# 需要導入模塊: from web3 import Web3 [as 別名]
# 或者: from web3.Web3 import sha3 [as 別名]
def test_sha3_hexstr(hexstr, digest):
assert Web3.sha3(hexstr=hexstr) == digest
示例7: test_sha3_text
# 需要導入模塊: from web3 import Web3 [as 別名]
# 或者: from web3.Web3 import sha3 [as 別名]
def test_sha3_text(message, digest):
assert Web3.sha3(text=message) == digest