11 lines
227 B
Text
11 lines
227 B
Text
// Non-strict version:
|
|
// Note that this does not strongly enforce that the commitment is
|
|
// in the field.
|
|
|
|
import "PACKING/split" as split
|
|
|
|
def main(field i) -> (field[256]):
|
|
|
|
field[254] b = split(i)
|
|
|
|
return [0, 0, ...b]
|