Home
last modified time | relevance | path

Searched refs:hex_from_bytes (Results 1 – 11 of 11) sorted by relevance

/dports/net-p2p/c-lightning/lightning-0.10.2/external/libwally-core/src/swig_python/contrib/
H A Delements_tx.py88 self.assertEqual(tx_hex, hex_from_bytes(tx_bytes))
106 …self.assertEqual(hex_from_bytes(entropy), "3db9d8b4a9da087b42f29f34431412aaa24d63750bb31b9a2e26379…
108 …self.assertEqual(hex_from_bytes(asset[::-1]), "dedf795f74e8b52c6ff8a9ad390850a87b18aeb2be9d1967038…
113 …self.assertEqual(hex_from_bytes(asset[::-1]), "eb82f87a64d7b701569a88d9b1578953038b53916ebf7f87b86…
115 …self.assertEqual(hex_from_bytes(reissuance_token[::-1]), "42066f5f26d72da30758487822436c61cccea78e…
125 self.assertEqual(hex_from_bytes(pubkey), pubkey_hex)
136 self.assertEqual(hex_from_bytes(pubkey), pubkey_hex_segwit)
H A Dreconcile_sigs.py36 pytx_hash = hex_from_bytes(to_bytes_32(pytx_hash))
51 tx_hash = hex_from_bytes(tx_hash)
H A Dsha.py6 b2h = hex_from_bytes
H A Dpsbt.py51 self.assertEqual(hex_from_bytes(psbt_bytes),
52 hex_from_bytes(psbt_to_bytes(psbt_tmp, 0)))
/dports/net-p2p/c-lightning/lightning-0.10.2/external/libwally-core/src/swig_java/src/com/blockstream/test/
H A Dtest_assets.java61 if (!Wally.hex_from_bytes(pubkey).equals(pubkey_hex)) in test_confidential_address()
82 private String h(final byte[] bytes) { return Wally.hex_from_bytes(bytes); } in h()
H A Dtest_scripts.java35 private String h(final byte[] bytes) { return Wally.hex_from_bytes(bytes); } in h()
H A Dtest_pegs.java51 private String h(final byte[] bytes) { return Wally.hex_from_bytes(bytes); } in h()
H A Dtest_bip32.java92 private String h(final byte[] bytes) { return Wally.hex_from_bytes(bytes); } in h()
H A Dtest_tx.java99 private String h(final byte[] bytes) { return Wally.hex_from_bytes(bytes); } in h()
/dports/net-p2p/c-lightning/lightning-0.10.2/external/libwally-core/tools/msvc/
H A Dwheel.bat31 venv-smoketest\Scripts\python -c "import wallycore as wally; assert wally.hex_from_bytes(wally.hex_…
/dports/net-p2p/c-lightning/lightning-0.10.2/external/libwally-core/include/
H A Dwally.hpp441 inline int hex_from_bytes(const BYTES& bytes, char** output) { in hex_from_bytes() function