Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for limbsToBytes (0.07 sec)

  1. lib/fips140/v1.0.0.zip

    bytesToLimbs(l *[4]uint64, b *[32]byte) { l[0] = byteorder.BEUint64(b[24:]) l[1] = byteorder.BEUint64(b[16:]) l[2] = byteorder.BEUint64(b[8:]) l[3] = byteorder.BEUint64(b[:]) } func p256LittleToBig(b *[32]byte, l *p256Element) { limbsToBytes(b, (*[4]uint64)(l)) } func limbsToBytes(b *[32]byte, l *[4]uint64) { byteorder.BEPutUint64(b[24:], l[0]) byteorder.BEPutUint64(b[16:], l[1]) byteorder.BEPutUint64(b[8:], l[2]) byteorder.BEPutUint64(b[:], l[3]) } // p256Add sets res = x + y. func p256Add(res, x, y...
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Jan 29 15:10:35 UTC 2025
    - 635K bytes
    - Viewed (0)
Back to top