wireguard-go/tai64n/tai64n.go

33 lines
659 B
Go
Raw Normal View History

2019-01-02 00:55:51 +00:00
/* SPDX-License-Identifier: MIT
*
2019-01-02 00:55:51 +00:00
* Copyright (C) 2017-2019 WireGuard LLC. All Rights Reserved.
*/
package tai64n
2017-06-23 11:41:59 +00:00
import (
2017-06-24 13:34:17 +00:00
"bytes"
2017-06-23 11:41:59 +00:00
"encoding/binary"
"time"
)
2018-02-11 18:25:33 +00:00
const TimestampSize = 12
const base = uint64(0x400000000000000a)
const whitenerMask = uint32(0x1000000 - 1)
2017-06-23 11:41:59 +00:00
2018-02-11 18:25:33 +00:00
type Timestamp [TimestampSize]byte
2017-06-23 11:41:59 +00:00
func Now() Timestamp {
2018-02-11 18:25:33 +00:00
var tai64n Timestamp
2017-06-23 11:41:59 +00:00
now := time.Now()
2018-02-11 18:25:33 +00:00
secs := base + uint64(now.Unix())
nano := uint32(now.Nanosecond()) &^ whitenerMask
2017-06-23 11:41:59 +00:00
binary.BigEndian.PutUint64(tai64n[:], secs)
binary.BigEndian.PutUint32(tai64n[8:], nano)
return tai64n
}
2017-06-24 13:34:17 +00:00
2018-02-11 18:25:33 +00:00
func (t1 Timestamp) After(t2 Timestamp) bool {
2017-06-24 13:34:17 +00:00
return bytes.Compare(t1[:], t2[:]) > 0
}