Uint64 returns the uint64 representation of the value. If the value is not representable in an uint64 the result is undefined.
()
| 200 | // Uint64 returns the uint64 representation of the value. |
| 201 | // If the value is not representable in an uint64 the result is undefined. |
| 202 | func (i *Int) Uint64() uint64 { |
| 203 | return i.V.Uint64() |
| 204 | } |
| 205 | |
| 206 | // Add sets the target to a + b mod M, where M is a's modulus.. |
| 207 | func (i *Int) Add(a, b kyber.Scalar) kyber.Scalar { |
no outgoing calls