Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for limbsToBytes (0.59 sec)

  1. lib/fips140/v1.0.0-c2097c7c.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 Dec 30 11:13:12 UTC 2025
    - Last Modified: Thu Sep 25 19:53:19 UTC 2025
    - 642.7K bytes
    - Viewed (0)
  2. lib/fips140/v1.1.0-rc1.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 Dec 30 11:13:12 UTC 2025
    - Last Modified: Thu Dec 11 16:27:41 UTC 2025
    - 663K bytes
    - Viewed (0)
Back to top