Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 374 for 0xfe (0.05 sec)

  1. src/crypto/des/des_test.go

    	{
    		[]byte{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff},
    		[]byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
    		[]byte{0xca, 0xaa, 0xaf, 0x4d, 0xea, 0xf1, 0xdb, 0xae}},
    	{
    		[]byte{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff},
    		[]byte{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff},
    		[]byte{0x73, 0x59, 0xb2, 0x16, 0x3e, 0x4e, 0xdc, 0x58}},
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 16:49:56 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  2. src/image/png/testdata/pngsuite/basn3p08.sng

        (237,237,255)     # rgb = (0xed,0xed,0xff)
        (102,102,  0)     # rgb = (0x66,0x66,0x00)
        (255,164, 68)     # rgb = (0xff,0xa4,0x44)
        (255,255,170)     # rgb = (0xff,0xff,0xaa)
        (237,237,  0)     # rgb = (0xed,0xed,0x00)
        (  0,203,203)     # rgb = (0x00,0xcb,0xcb)
        (254,255,255)     # rgb = (0xfe,0xff,0xff)
        (253,255,254)     # rgb = (0xfd,0xff,0xfe)
        (255,255,  1)     # rgb = (0xff,0xff,0x01)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 13.9K bytes
    - Viewed (0)
  3. src/image/png/testdata/pngsuite/basn3p08-trns.sng

        (102,255,  8)     # rgb = (0x66,0xff,0x08)
        (255,255,255)     # rgb = (0xff,0xff,0xff)
        (254,254,254)     # rgb = (0xfe,0xfe,0xfe)
        (254,254,254)     # rgb = (0xfe,0xfe,0xfe)
        (252,252,252)     # rgb = (0xfc,0xfc,0xfc)
        (252,252,252)     # rgb = (0xfc,0xfc,0xfc)
        (250,250,250)     # rgb = (0xfa,0xfa,0xfa)
        (250,250,250)     # rgb = (0xfa,0xfa,0xfa)
        (248,248,248)     # rgb = (0xf8,0xf8,0xf8)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 14.6K bytes
    - Viewed (0)
  4. src/net/mac_test.go

    	{
    		"ab:cd:ef:AB:CD:EF:ab:cd:ef:AB:CD:EF:ab:cd:ef:AB:CD:EF:ab:cd",
    		HardwareAddr{
    			0xab, 0xcd, 0xef, 0xab,
    			0xcd, 0xef, 0xab, 0xcd, 0xef, 0xab, 0xcd, 0xef,
    			0xab, 0xcd, 0xef, 0xab, 0xcd, 0xef, 0xab, 0xcd,
    		},
    		"",
    	},
    
    	{"01.02.03.04.05.06", nil, "invalid MAC address"},
    	{"01:02:03:04:05:06:", nil, "invalid MAC address"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 27 02:36:14 UTC 2019
    - 3.3K bytes
    - Viewed (0)
  5. src/image/jpeg/dct_test.go

    	},
    	{
    		0x88, 0xfd, 0x00, 0x00, 0xff, 0x00, 0x01, 0xff,
    		0xe1, 0x06, 0x06, 0x01, 0xff, 0x00, 0x01, 0x00,
    		0x08, 0x00, 0xfa, 0x00, 0xff, 0xff, 0xff, 0xff,
    		0x08, 0x01, 0x00, 0xff, 0x01, 0xff, 0x00, 0x00,
    		0xf5, 0xff, 0x00, 0x01, 0xff, 0x01, 0x01, 0x00,
    		0xff, 0xff, 0x01, 0xff, 0x01, 0x00, 0x01, 0x00,
    		0x00, 0x01, 0x01, 0xff, 0x00, 0xff, 0x00, 0x01,
    		0x02, 0x00, 0x00, 0xff, 0xff, 0x00, 0xff, 0x00,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:49:30 UTC 2022
    - 8.6K bytes
    - Viewed (0)
  6. src/crypto/cipher/ctr_aes_test.go

    package cipher_test
    
    import (
    	"bytes"
    	"crypto/aes"
    	"crypto/cipher"
    	"testing"
    )
    
    var commonCounter = []byte{0xf0, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, 0xf8, 0xf9, 0xfa, 0xfb, 0xfc, 0xfd, 0xfe, 0xff}
    
    var ctrAESTests = []struct {
    	name string
    	key  []byte
    	iv   []byte
    	in   []byte
    	out  []byte
    }{
    	// NIST SP 800-38A pp 55-58
    	{
    		"CTR-AES128",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 3K bytes
    - Viewed (0)
  7. src/crypto/rsa/rsa_test.go

    					0xf9, 0x51, 0xbc, 0xb2, 0x51, 0xef, 0xd9, 0x25, 0xfe,
    					0x4f, 0xe3, 0x5f,
    				},
    				[]byte{0x64, 0x0d, 0xb1, 0xac, 0xc5, 0x8e, 0x05, 0x68,
    					0xfe, 0x54, 0x07, 0xe5, 0xf9, 0xb7, 0x01, 0xdf, 0xf8,
    					0xc3, 0xc9, 0x1e, 0x71, 0x6c, 0x53, 0x6f, 0xc7, 0xfc,
    					0xec, 0x6c, 0xb5, 0xb7, 0x1c, 0x11, 0x65, 0x98, 0x8d,
    					0x4a, 0x27, 0x9e, 0x15, 0x77, 0xd7, 0x30, 0xfc, 0x7a,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 12 00:55:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  8. src/crypto/rsa/pss_test.go

    		0x4b, 0xed, 0x65, 0x76, 0xb8, 0x67, 0xd9, 0xa4, 0x47, 0xc2,
    		0x8a, 0x6e, 0x66, 0xa5, 0xb8, 0x7d, 0xee, 0x7f, 0xbc, 0x7e,
    		0x65, 0xaf, 0x50, 0x57, 0xf8, 0x6f, 0xae, 0x89, 0x84, 0xd9,
    		0xba, 0x7f, 0x96, 0x9a, 0xd6, 0xfe, 0x02, 0xa4, 0xd7, 0x5f,
    		0x74, 0x45, 0xfe, 0xfd, 0xd8, 0x5b, 0x6d, 0x3a, 0x47, 0x7c,
    		0x28, 0xd2, 0x4b, 0xa1, 0xe3, 0x75, 0x6f, 0x79, 0x2d, 0xd1,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/windows/zknownfolderids_windows.go

    	FOLDERID_OneDrive               = &KNOWNFOLDERID{0xa52bba46, 0xe9e1, 0x435f, [8]byte{0xb3, 0xd9, 0x28, 0xda, 0xa6, 0x48, 0xc0, 0xf6}}
    	FOLDERID_SkyDriveDocuments      = &KNOWNFOLDERID{0x24d89e24, 0x2f19, 0x4534, [8]byte{0x9d, 0xde, 0x6a, 0x66, 0x71, 0xfb, 0xb8, 0xfe}}
    	FOLDERID_SkyDrivePictures       = &KNOWNFOLDERID{0x339719b5, 0x8c47, 0x4894, [8]byte{0x94, 0xc2, 0xd8, 0xf7, 0x7a, 0xdd, 0x44, 0xa6}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 19 21:26:10 UTC 2020
    - 18.7K bytes
    - Viewed (0)
  10. cmd/erasure-sets_test.go

    		{"117Gn8rfHL2ACARPAhaFd0AGzic9pUbIA/5OCn5A", 35},
    		{"SHØRT", 49},
    		{"There are far too many object names, and far too few bucket names!", 8},
    		{"a/b/c/", 159},
    		{"/a/b/c", 96},
    		{string([]byte{0xff, 0xfe, 0xfd}), 147},
    	}
    
    	// Tests hashing order to be consistent.
    	for i, testCase := range testCases {
    		if sipHashElement := hashKey("SIPMOD", testCase.objectName, 200, testUUID); sipHashElement != testCase.sipHash {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 12 07:21:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top