HideLen returns the length in bytes of a uniform byte-string encoding of this Int, satisfying the requirements of the Hiding interface. For a Int this is always the same length as the normal encoding.
()
| 411 | // satisfying the requirements of the Hiding interface. |
| 412 | // For a Int this is always the same length as the normal encoding. |
| 413 | func (i *Int) HideLen() int { |
| 414 | return i.MarshalSize() |
| 415 | } |
| 416 | |
| 417 | // HideEncode a Int such that it appears indistinguishable |
| 418 | // from a HideLen()-byte string chosen uniformly at random, |
no test coverage detected