mirror of
https://github.com/0x5eal/wg-lua.git
synced 2024-12-13 13:30:39 +00:00
11 lines
475 B
Text
11 lines
475 B
Text
local wg = require("../out/").wireguard
|
|
|
|
local BASE64_PAT = "^(?:%a%d+/?){4}*(?:%a%d+/?){2}==|(?:%a%d+/?){3}=?$"
|
|
|
|
local keypair = wg:generateKeypair()
|
|
|
|
assert(#keypair.publicKey == 44, "expected public key to be 44 bytes")
|
|
assert(#keypair.privateKey == 44, "expected private key to be 44 bytes")
|
|
|
|
assert(keypair.privateKey:match(BASE64_PAT), "expected private key to be base64 encoded")
|
|
assert(keypair.publicKey:match(BASE64_PAT), "expected public key to be base64 encoded")
|