2020-02-10 19:27:58 +01:00
|
|
|
function concat_op (const s : bytes) : bytes is bytes_concat (s, 0x7070)
|
2019-09-07 18:42:59 +02:00
|
|
|
|
2020-02-10 19:27:58 +01:00
|
|
|
function slice_op (const s : bytes) : bytes is bytes_slice (1n, 2n, s)
|
2019-09-07 18:42:59 +02:00
|
|
|
|
2020-02-10 19:27:58 +01:00
|
|
|
function hasherman (const s : bytes) : bytes is sha_256 (s)
|