Files
go-i2p/lib/crypto/aes.go
2016-01-28 10:16:26 -05:00

29 lines
309 B
Go

package crypto
type AesCBC struct {
}
type AesECB struct {
}
type TunnelKey [32]byte
type TunnelIV [16]byte
//
// tunnel aes base
//
type TunnelAes struct {
layerKey TunnelKey
ivKey TunnelKey
iv TunnelIV
}
type TunnelEncryption struct {
TunnelAes
}
type TunnelDecryption struct {
TunnelAes
}