Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. lib/fips140/v1.1.0-rc1.zip

    impl.Register("subtle", "LSX", &useLSX) impl.Register("subtle", "LASX", &useLASX) } //go:noescape func xorBytesBasic(dst, a, b *byte, n int) //go:noescape func xorBytesLSX(dst, a, b *byte, n int) //go:noescape func xorBytesLASX(dst, a, b *byte, n int) func xorBytes(dst, a, b *byte, n int) { if useLASX { xorBytesLASX(dst, a, b, n) } else if useLSX { xorBytesLSX(dst, a, b, n) } else { xorBytesBasic(dst, a, b, n) } } golang.org/fips140@v1.1.0-rc1/fips140/v1.1.0-rc1/subtle/xor_loong64.s // Copyright 2024...
    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