libgocryptfs/cryptfs/nonce.go

57 lines
927 B
Go
Raw Normal View History

2015-09-03 18:57:28 +02:00
package cryptfs
2015-09-03 18:22:18 +02:00
import (
2015-10-04 14:36:20 +02:00
"crypto/rand"
2015-09-03 18:22:18 +02:00
"encoding/binary"
"encoding/hex"
"sync"
)
type nonce96 struct {
2015-10-04 14:36:20 +02:00
lock sync.Mutex
2015-09-03 18:22:18 +02:00
high32 uint32
2015-10-04 14:36:20 +02:00
low64 uint64
ready int
2015-09-03 18:22:18 +02:00
}
var gcmNonce nonce96
// Get "n" random bytes from /dev/urandom or panic
func RandBytes(n int) []byte {
b := make([]byte, n)
2015-09-03 18:22:18 +02:00
_, err := rand.Read(b)
if err != nil {
panic("Could not get random bytes for nonce")
}
return b
}
func (n *nonce96) init() {
b := RandBytes(8)
2015-09-03 18:22:18 +02:00
n.low64 = binary.BigEndian.Uint64(b)
b = RandBytes(4)
2015-09-03 18:22:18 +02:00
n.high32 = binary.BigEndian.Uint32(b)
n.ready = 1
return
}
func (n *nonce96) Get() []byte {
n.lock.Lock()
if n.ready == 0 {
n.init()
}
n.low64++
if n.low64 == 0 {
// Counter has wrapped
n.high32++
}
r := make([]byte, 12)
binary.BigEndian.PutUint32(r[0:4], n.high32)
binary.BigEndian.PutUint64(r[4:12], n.low64)
n.lock.Unlock()
2015-09-05 20:36:26 +02:00
Debug.Printf("nonce96.Get(): %s\n", hex.EncodeToString(r))
2015-09-03 18:22:18 +02:00
return r
}