2019-11-05 04:58:34 +04:00
|
|
|
let concat_op (s : bytes) : bytes =
|
|
|
|
Bytes.concat s ("7070" : bytes)
|
|
|
|
|
|
|
|
let slice_op (s : bytes) : bytes =
|
2019-11-06 17:35:15 +04:00
|
|
|
Bytes.slice 1n 2n s
|
2019-11-05 04:58:34 +04:00
|
|
|
|
|
|
|
let hasherman (s : bytes) : bytes =
|
|
|
|
Crypto.sha256 s
|