MCPcopy Create free account
hub / github.com/ccxt/ccxt / sigencode_string

Function sigencode_string

python/ccxt/static_dependencies/ecdsa/util.py:199–203  ·  view source on GitHub ↗
(r, s, order, v=None)

Source from the content-addressed store, hash-verified

197
198
199def sigencode_string(r, s, order, v=None):
200 # for any given curve, the size of the signature numbers is
201 # fixed, so just use simple concatenation
202 r_str, s_str, v = sigencode_strings(r, s, order)
203 return r_str + s_str
204
205
206def sigencode_der(r, s, order, v=None):

Callers 1

Calls 1

sigencode_stringsFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…