Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestPowx (0.07 sec)

  1. src/crypto/aes/aes_test.go

    package aes
    
    import (
    	"testing"
    )
    
    // See const.go for overview of math here.
    
    // Test that powx is initialized correctly.
    // (Can adapt this code to generate it too.)
    func TestPowx(t *testing.T) {
    	p := 1
    	for i := 0; i < len(powx); i++ {
    		if powx[i] != byte(p) {
    			t.Errorf("powx[%d] = %#x, want %#x", i, powx[i], p)
    		}
    		p <<= 1
    		if p&0x100 != 0 {
    			p ^= poly
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 14:58:19 UTC 2024
    - 12.5K bytes
    - Viewed (0)
Back to top