github.com/birneee/aes6@v0.0.0-20240131140838-9e8f775f7eae/cipher.go (about)

     1  package aes6
     2  
     3  // copy from crypto/aes
     4  const BlockSize = 16
     5  
     6  // copy from crypto/aes
     7  type aesCipher struct {
     8  	enc []uint32
     9  	dec []uint32
    10  }