mirror of
https://github.com/amnezia-vpn/amneziawg-go.git
synced 2025-04-14 04:56:55 +02:00
Fixed missing type
This commit is contained in:
parent
50aeefcb51
commit
521e77fd54
1 changed files with 4 additions and 2 deletions
|
@ -12,8 +12,10 @@ const (
|
|||
)
|
||||
|
||||
type (
|
||||
NoisePublicKey [NoisePublicKeySize]byte
|
||||
NoisePrivateKey [NoisePrivateKeySize]byte
|
||||
NoisePublicKey [NoisePublicKeySize]byte
|
||||
NoisePrivateKey [NoisePrivateKeySize]byte
|
||||
NoiseSymmetricKey [NoiseSymmetricKeySize]byte
|
||||
NoiseNonce uint64 // padded to 12-bytes
|
||||
)
|
||||
|
||||
func loadExactHex(dst []byte, src string) error {
|
||||
|
|
Loading…
Add table
Reference in a new issue