rc.go raw

   1  package sha3
   2  
   3  // RC stores the round constants for use in the ι step.
   4  var RC = [24]uint64{
   5  	0x0000000000000001,
   6  	0x0000000000008082,
   7  	0x800000000000808A,
   8  	0x8000000080008000,
   9  	0x000000000000808B,
  10  	0x0000000080000001,
  11  	0x8000000080008081,
  12  	0x8000000000008009,
  13  	0x000000000000008A,
  14  	0x0000000000000088,
  15  	0x0000000080008009,
  16  	0x000000008000000A,
  17  	0x000000008000808B,
  18  	0x800000000000008B,
  19  	0x8000000000008089,
  20  	0x8000000000008003,
  21  	0x8000000000008002,
  22  	0x8000000000000080,
  23  	0x000000000000800A,
  24  	0x800000008000000A,
  25  	0x8000000080008081,
  26  	0x8000000000008080,
  27  	0x0000000080000001,
  28  	0x8000000080008008,
  29  }
  30