Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for feistelBox (0.09 sec)

  1. src/crypto/des/block.go

    		feistelBox[4][(t>>8)&0x3f] ^
    		feistelBox[2][(t>>16)&0x3f] ^
    		feistelBox[0][(t>>24)&0x3f]
    
    	t = l ^ uint32(k1>>32)
    	r ^= feistelBox[7][t&0x3f] ^
    		feistelBox[5][(t>>8)&0x3f] ^
    		feistelBox[3][(t>>16)&0x3f] ^
    		feistelBox[1][(t>>24)&0x3f]
    
    	t = ((l << 28) | (l >> 4)) ^ uint32(k1)
    	r ^= feistelBox[6][(t)&0x3f] ^
    		feistelBox[4][(t>>8)&0x3f] ^
    		feistelBox[2][(t>>16)&0x3f] ^
    		feistelBox[0][(t>>24)&0x3f]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top