Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for pli (0.12 sec)

  1. src/crypto/rc4/rc4_test.go

    )
    
    type rc4Test struct {
    	key, keystream []byte
    }
    
    var golden = []rc4Test{
    	// Test vectors from the original cypherpunk posting of ARC4:
    	//   https://groups.google.com/group/sci.crypt/msg/10a300c9d21afca0?pli=1
    	{
    		[]byte{0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef},
    		[]byte{0x74, 0x94, 0xc2, 0xe7, 0x10, 0x4b, 0x08, 0x79},
    	},
    	{
    		[]byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 21 19:49:06 UTC 2018
    - 4.3K bytes
    - Viewed (0)
Back to top