Skip to content

Commit

Permalink
Command: Add wg for wireguard key generation (XTLS#2794)
Browse files Browse the repository at this point in the history
* Command: Add `wg` for wireguard key generation

* Command: Merge `x25519` and `wg`
  • Loading branch information
chise0713 committed Dec 12, 2023
1 parent 2c97bea commit 2da476e
Show file tree
Hide file tree
Showing 4 changed files with 87 additions and 53 deletions.
1 change: 1 addition & 0 deletions main/commands/all/commands.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,6 @@ func init() {
tls.CmdTLS,
cmdUUID,
cmdX25519,
cmdWG,
)
}
57 changes: 57 additions & 0 deletions main/commands/all/curve25519.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
package all

import (
"crypto/rand"
"encoding/base64"
"fmt"

"golang.org/x/crypto/curve25519"
)

func Curve25519Genkey(StdEncoding bool, input_base64 string) {
var output string
var err error
var privateKey, publicKey []byte
var encoding *base64.Encoding
if *input_stdEncoding || StdEncoding {
encoding = base64.StdEncoding
} else {
encoding = base64.RawURLEncoding
}

if len(input_base64) > 0 {
privateKey, err = encoding.DecodeString(input_base64)
if err != nil {
output = err.Error()
goto out
}
if len(privateKey) != curve25519.ScalarSize {
output = "Invalid length of private key."
goto out
}
}

if privateKey == nil {
privateKey = make([]byte, curve25519.ScalarSize)
if _, err = rand.Read(privateKey); err != nil {
output = err.Error()
goto out
}
}

// Modify random bytes using algorithm described at:
// https://cr.yp.to/ecdh.html.
privateKey[0] &= 248
privateKey[31] &= 127 | 64

if publicKey, err = curve25519.X25519(privateKey, curve25519.Basepoint); err != nil {
output = err.Error()
goto out
}

output = fmt.Sprintf("Private key: %v\nPublic key: %v",
encoding.EncodeToString(privateKey),
encoding.EncodeToString(publicKey))
out:
fmt.Println(output)
}
27 changes: 27 additions & 0 deletions main/commands/all/wg.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
package all

import (
"github.com/xtls/xray-core/main/commands/base"
)

var cmdWG = &base.Command{
UsageLine: `{{.Exec}} wg [-i "private key (base64.StdEncoding)"]`,
Short: `Generate key pair for wireguard key exchange`,
Long: `
Generate key pair for wireguard key exchange.
Random: {{.Exec}} wg
From private key: {{.Exec}} wg -i "private key (base64.StdEncoding)"
`,
}

func init() {
cmdWG.Run = executeWG // break init loop
}

var input_wireguard = cmdWG.Flag.String("i", "", "")

func executeWG(cmd *base.Command, args []string) {
Curve25519Genkey(true, *input_wireguard)
}
55 changes: 2 additions & 53 deletions main/commands/all/x25519.go
Original file line number Diff line number Diff line change
@@ -1,12 +1,7 @@
package all

import (
"crypto/rand"
"encoding/base64"
"fmt"

"github.com/xtls/xray-core/main/commands/base"
"golang.org/x/crypto/curve25519"
)

var cmdX25519 = &base.Command{
Expand All @@ -26,55 +21,9 @@ func init() {
cmdX25519.Run = executeX25519 // break init loop
}

var input_base64 = cmdX25519.Flag.String("i", "", "")
var input_stdEncoding = cmdX25519.Flag.Bool("std-encoding", false, "")
var input_x25519 = cmdX25519.Flag.String("i", "", "")

func executeX25519(cmd *base.Command, args []string) {
var output string
var err error
var privateKey []byte
var publicKey []byte
var encoding *base64.Encoding
if len(*input_base64) > 0 {
privateKey, err = base64.RawURLEncoding.DecodeString(*input_base64)
if err != nil {
output = err.Error()
goto out
}
if len(privateKey) != curve25519.ScalarSize {
output = "Invalid length of private key."
goto out
}
}

if privateKey == nil {
privateKey = make([]byte, curve25519.ScalarSize)
if _, err = rand.Read(privateKey); err != nil {
output = err.Error()
goto out
}
}

// Modify random bytes using algorithm described at:
// https://cr.yp.to/ecdh.html.
privateKey[0] &= 248
privateKey[31] &= 127
privateKey[31] |= 64

if publicKey, err = curve25519.X25519(privateKey, curve25519.Basepoint); err != nil {
output = err.Error()
goto out
}

if *input_stdEncoding {
encoding = base64.StdEncoding
} else {
encoding = base64.RawURLEncoding
}

output = fmt.Sprintf("Private key: %v\nPublic key: %v",
encoding.EncodeToString(privateKey),
encoding.EncodeToString(publicKey))
out:
fmt.Println(output)
Curve25519Genkey(false, *input_x25519)
}

0 comments on commit 2da476e

Please sign in to comment.