10 lines
154 B
Go
10 lines
154 B
Go
|
package aesCommon
|
||
|
|
||
|
// GetByteLen returns the length of *bytes* of an aesBitSize.
|
||
|
func (a *aesBitSize) GetByteLen() (l int) {
|
||
|
|
||
|
l = int(*a) / 8
|
||
|
|
||
|
return
|
||
|
}
|