mirror of
https://git.zx2c4.com/wireguard-go
synced 2024-11-15 01:05:15 +01:00
Fixed missing type
This commit is contained in:
parent
50aeefcb51
commit
521e77fd54
@ -12,8 +12,10 @@ const (
|
|||||||
)
|
)
|
||||||
|
|
||||||
type (
|
type (
|
||||||
NoisePublicKey [NoisePublicKeySize]byte
|
NoisePublicKey [NoisePublicKeySize]byte
|
||||||
NoisePrivateKey [NoisePrivateKeySize]byte
|
NoisePrivateKey [NoisePrivateKeySize]byte
|
||||||
|
NoiseSymmetricKey [NoiseSymmetricKeySize]byte
|
||||||
|
NoiseNonce uint64 // padded to 12-bytes
|
||||||
)
|
)
|
||||||
|
|
||||||
func loadExactHex(dst []byte, src string) error {
|
func loadExactHex(dst []byte, src string) error {
|
||||||
|
Loading…
Reference in New Issue
Block a user