mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-01 04:41:22 +00:00
70 lines
1.5 KiB
Go
70 lines
1.5 KiB
Go
|
package crypto
|
||
|
|
||
|
import (
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
// UpdateTime updates cached time.
|
||
|
func UpdateTime(newTime int64) {
|
||
|
pgp.lock.Lock()
|
||
|
defer pgp.lock.Unlock()
|
||
|
|
||
|
if newTime > pgp.latestServerTime {
|
||
|
pgp.latestServerTime = newTime
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// SetKeyGenerationOffset updates the offset when generating keys.
|
||
|
func SetKeyGenerationOffset(offset int64) {
|
||
|
pgp.lock.Lock()
|
||
|
defer pgp.lock.Unlock()
|
||
|
|
||
|
pgp.generationOffset = offset
|
||
|
}
|
||
|
|
||
|
// GetUnixTime gets latest cached time.
|
||
|
func GetUnixTime() int64 {
|
||
|
return getNow().Unix()
|
||
|
}
|
||
|
|
||
|
// GetTime gets latest cached time.
|
||
|
func GetTime() time.Time {
|
||
|
return getNow()
|
||
|
}
|
||
|
|
||
|
// ----- INTERNAL FUNCTIONS -----
|
||
|
|
||
|
// getNow returns the latest server time.
|
||
|
func getNow() time.Time {
|
||
|
pgp.lock.RLock()
|
||
|
defer pgp.lock.RUnlock()
|
||
|
|
||
|
if pgp.latestServerTime == 0 {
|
||
|
return time.Now()
|
||
|
}
|
||
|
|
||
|
return time.Unix(pgp.latestServerTime, 0)
|
||
|
}
|
||
|
|
||
|
// getTimeGenerator Returns a time generator function.
|
||
|
func getTimeGenerator() func() time.Time {
|
||
|
return getNow
|
||
|
}
|
||
|
|
||
|
// getNowKeyGenerationOffset returns the current time with the key generation offset.
|
||
|
func getNowKeyGenerationOffset() time.Time {
|
||
|
pgp.lock.RLock()
|
||
|
defer pgp.lock.RUnlock()
|
||
|
|
||
|
if pgp.latestServerTime == 0 {
|
||
|
return time.Unix(time.Now().Unix()+pgp.generationOffset, 0)
|
||
|
}
|
||
|
|
||
|
return time.Unix(pgp.latestServerTime+pgp.generationOffset, 0)
|
||
|
}
|
||
|
|
||
|
// getKeyGenerationTimeGenerator Returns a time generator function with the key generation offset.
|
||
|
func getKeyGenerationTimeGenerator() func() time.Time {
|
||
|
return getNowKeyGenerationOffset
|
||
|
}
|