wireguard-go/device/keypair.go

53 lines
1.0 KiB
Go
Raw Normal View History

2019-01-01 19:55:51 -05:00
/* SPDX-License-Identifier: MIT
*
* Copyright (C) 2017-2023 WireGuard LLC. All Rights Reserved.
*/
2019-03-02 22:04:41 -05:00
package device
2017-06-24 09:34:17 -04:00
import (
"crypto/cipher"
2017-06-26 07:14:02 -04:00
"sync"
"sync/atomic"
2017-06-27 11:33:06 -04:00
"time"
2019-05-14 03:09:52 -04:00
2024-01-07 14:03:11 -05:00
"gitea.hbanafa.com/hesham/wireguard-go/replay"
2017-06-24 09:34:17 -04:00
)
/* Due to limitations in Go and /x/crypto there is currently
* no way to ensure that key material is securely ereased in memory.
*
* Since this may harm the forward secrecy property,
* we plan to resolve this issue; whenever Go allows us to do so.
*/
2017-09-01 08:21:53 -04:00
type Keypair struct {
sendNonce atomic.Uint64
send cipher.AEAD
receive cipher.AEAD
replayFilter replay.Filter
2017-07-10 06:09:19 -04:00
isInitiator bool
created time.Time
localIndex uint32
remoteIndex uint32
2017-06-26 07:14:02 -04:00
}
type Keypairs struct {
sync.RWMutex
current *Keypair
previous *Keypair
next atomic.Pointer[Keypair]
}
func (kp *Keypairs) Current() *Keypair {
kp.RLock()
defer kp.RUnlock()
return kp.current
2017-06-24 09:34:17 -04:00
}
2017-08-14 11:09:25 -04:00
func (device *Device) DeleteKeypair(key *Keypair) {
if key != nil {
2018-05-13 12:23:40 -04:00
device.indexTable.Delete(key.localIndex)
}
2017-08-14 11:09:25 -04:00
}