mirror of
https://github.com/1f349/twofactor.git
synced 2024-12-22 23:44:05 +00:00
72a472700b
The counter needs to be represented in bigendian format. Unfortunately with commit #00045cb I made the unfortunate choice to swap the endiannes from big-endian to little-endian. This broke the functionality for certain counters. - [x] Added Go vendoring - [x] Bumped version of golang in travis yml file - [x] Removed conversion files and instead used import of convert sec51 external library
42 lines
1.2 KiB
Go
42 lines
1.2 KiB
Go
package smallendian
|
|
|
|
// helper function which converts a uint64 to a []byte in Small Endian
|
|
func ToUint64(n uint64) [8]byte {
|
|
data := [8]byte{}
|
|
data[7] = byte((n >> 56) & 0xFF)
|
|
data[6] = byte((n >> 48) & 0xFF)
|
|
data[5] = byte((n >> 40) & 0xFF)
|
|
data[4] = byte((n >> 32) & 0xFF)
|
|
data[3] = byte((n >> 24) & 0xFF)
|
|
data[2] = byte((n >> 16) & 0xFF)
|
|
data[1] = byte((n >> 8) & 0xFF)
|
|
data[0] = byte(n & 0xFF)
|
|
return data
|
|
}
|
|
|
|
// helper function which converts a small endian []byte to a uint64
|
|
func FromUint64(data [8]byte) uint64 {
|
|
i := (uint64(data[0]) << 0) | (uint64(data[1]) << 8) |
|
|
(uint64(data[2]) << 16) | (uint64(data[3]) << 24) |
|
|
(uint64(data[4]) << 32) | (uint64(data[5]) << 40) |
|
|
(uint64(data[6]) << 48) | (uint64(data[7]) << 56)
|
|
return uint64(i)
|
|
}
|
|
|
|
// helper function which converts a int to a []byte in Small Endian
|
|
func ToInt(n int) [4]byte {
|
|
data := [4]byte{}
|
|
data[3] = byte((n >> 24) & 0xFF)
|
|
data[2] = byte((n >> 16) & 0xFF)
|
|
data[1] = byte((n >> 8) & 0xFF)
|
|
data[0] = byte(n & 0xFF)
|
|
return data
|
|
}
|
|
|
|
// helper function which converts a small endian []byte to a int
|
|
func FromInt(data [4]byte) int {
|
|
i := (int(data[0]) << 0) | (int(data[1]) << 8) |
|
|
(int(data[2]) << 16) | (int(data[3]) << 24)
|
|
return int(i)
|
|
}
|