當前位置: 首頁>>代碼示例>>Python>>正文


Python Web3.sha3方法代碼示例

本文整理匯總了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='')
開發者ID:syngraph,項目名稱:web3.py,代碼行數:5,代碼來源:test_sha3.py

示例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()
開發者ID:syngraph,項目名稱:web3.py,代碼行數:5,代碼來源:test_sha3.py

示例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)
開發者ID:syngraph,項目名稱:web3.py,代碼行數:6,代碼來源:test_sha3.py

示例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
開發者ID:syngraph,項目名稱:web3.py,代碼行數:4,代碼來源:test_sha3.py

示例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)
開發者ID:syngraph,項目名稱:web3.py,代碼行數:5,代碼來源:test_sha3.py

示例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
開發者ID:syngraph,項目名稱:web3.py,代碼行數:4,代碼來源:test_sha3.py

示例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
開發者ID:syngraph,項目名稱:web3.py,代碼行數:4,代碼來源:test_sha3.py


注:本文中的web3.Web3.sha3方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。