Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestXORBytes (0.11 sec)

  1. src/crypto/subtle/xor_test.go

    // license that can be found in the LICENSE file.
    
    package subtle_test
    
    import (
    	"bytes"
    	"crypto/rand"
    	. "crypto/subtle"
    	"fmt"
    	"io"
    	"testing"
    )
    
    func TestXORBytes(t *testing.T) {
    	for n := 1; n <= 1024; n++ {
    		if n > 16 && testing.Short() {
    			n += n >> 3
    		}
    		for alignP := 0; alignP < 8; alignP++ {
    			for alignQ := 0; alignQ < 8; alignQ++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:51:19 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top