Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestCBCEncrypterAES (0.85 sec)

  1. src/crypto/cipher/cbc_aes_test.go

    			0x39, 0xf2, 0x33, 0x69, 0xa9, 0xd9, 0xba, 0xcf, 0xa5, 0x30, 0xe2, 0x63, 0x04, 0x23, 0x14, 0x61,
    			0xb2, 0xeb, 0x05, 0xe2, 0xc3, 0x9b, 0xe9, 0xfc, 0xda, 0x6c, 0x19, 0x07, 0x8c, 0x6a, 0x9d, 0x1b,
    		},
    	},
    }
    
    func TestCBCEncrypterAES(t *testing.T) {
    	for _, test := range cbcAESTests {
    		c, err := aes.NewCipher(test.key)
    		if err != nil {
    			t.Errorf("%s: NewCipher(%d bytes) = %s", test.name, len(test.key), err)
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 2.9K bytes
    - Viewed (0)
Back to top