Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 44 of 44 for 512g (0.32 sec)

  1. src/crypto/rsa/pkcs1v15_test.go

    			t.Errorf("#%d: incorrect plaintext: got %x, want %x", i, plaintext, test.out)
    		}
    	}
    }
    
    func TestNonZeroRandomBytes(t *testing.T) {
    	random := rand.Reader
    
    	b := make([]byte, 512)
    	err := NonZeroRandomBytes(b, random)
    	if err != nil {
    		t.Errorf("returned error: %s", err)
    	}
    	for _, b := range b {
    		if b == 0 {
    			t.Errorf("Zero octet found")
    			return
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 00:16:30 UTC 2022
    - 8.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go

    	Start  int64
    	Len    int64
    	Pid    int32
    	Type   int16
    	Whence int16
    }
    
    type Dirent struct {
    	Fileno    uint64
    	Reclen    uint16
    	Namlen    uint16
    	Type      uint8
    	Name      [512]int8
    	Pad_cgo_0 [3]byte
    }
    
    type Fsid struct {
    	X__fsid_val [2]int32
    }
    
    const (
    	PathMax = 0x400
    )
    
    const (
    	ST_WAIT   = 0x1
    	ST_NOWAIT = 0x2
    )
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/crypto/sha3/sha3_s390x.go

    func new384() hash.Hash {
    	if cpu.S390X.HasSHA3 {
    		return newAsmState(sha3_384)
    	}
    	return new384Generic()
    }
    
    // new512 returns an assembly implementation of SHA3-512 if available,
    // otherwise it returns a generic implementation.
    func new512() hash.Hash {
    	if cpu.S390X.HasSHA3 {
    		return newAsmState(sha3_512)
    	}
    	return new512Generic()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  4. src/crypto/md5/md5block_arm.s

    	ROUND1(Rd, Ra, Rb, Rc,  1, 12, Rc1)
    	ROUND1(Rc, Rd, Ra, Rb,  2, 17, Rc2)
    	ROUND1(Rb, Rc, Rd, Ra,  3, 22, Rc3)
    
    	MOVM.IA.W (Rtable), [Rc0,Rc1,Rc2,Rc3]
    	ROUND1(Ra, Rb, Rc, Rd,  4,	7, Rc0)
    	ROUND1(Rd, Ra, Rb, Rc,  5, 12, Rc1)
    	ROUND1(Rc, Rd, Ra, Rb,  6, 17, Rc2)
    	ROUND1(Rb, Rc, Rd, Ra,  7, 22, Rc3)
    
    	MOVM.IA.W (Rtable), [Rc0,Rc1,Rc2,Rc3]
    	ROUND1(Ra, Rb, Rc, Rd,  8,	7, Rc0)
    	ROUND1(Rd, Ra, Rb, Rc,  9, 12, Rc1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top