import "golang.org/x/crypto/xtea"
Package xtea implements XTEA encryption, as defined in Needham and Wheeler's 1997 technical report, "Tea extensions."
const BlockSize = 8
The XTEA block size in bytes.
type Cipher struct {
// contains filtered or unexported fields
}
A Cipher is an instance of an XTEA cipher using a particular key. table contains a series of precalculated values that are used each round.
NewCipher creates and returns a new Cipher. The key argument should be the XTEA key. XTEA only supports 128 bit (16 byte) keys.
BlockSize returns the XTEA block size, 8 bytes. It is necessary to satisfy the Block interface in the package "crypto/cipher".
Decrypt decrypts the 8 byte buffer src using the key k and stores the result in dst.
Encrypt encrypts the 8 byte buffer src using the key and stores the result in dst. Note that for amounts of data larger than a block, it is not safe to just call Encrypt on successive blocks; instead, use an encryption mode like CBC (see crypto/cipher/cbc.go).
func (k KeySizeError) Error() string
Package xtea imports 1 packages (graph) and is imported by 1 packages. Updated a day ago. Refresh now. Tools for package owners.