luasec/samples/psk/server.lua

61 lines
1.1 KiB
Lua
Raw Normal View History

2023-02-16 01:52:18 +01:00
--
-- Public domain
--
local socket = require("socket")
local ssl = require("ssl")
2023-03-19 15:48:56 +01:00
if not ssl.config.capabilities.psk then
print("[ERRO] PSK not available")
os.exit(1)
end
2023-02-16 14:52:05 +01:00
-- @param identity (string)
-- @param max_psk_len (number)
-- @return psk (string)
local function pskcb(identity, max_psk_len)
print(string.format("PSK Callback: identity=%q, max_psk_len=%d", identity, max_psk_len))
if identity == "abcd" then
return "1234"
end
return nil
end
2023-02-16 01:52:18 +01:00
local params = {
mode = "server",
protocol = "any",
options = "all",
2023-02-19 12:56:24 +01:00
-- PSK with just a callback
2023-02-16 14:52:05 +01:00
psk = pskcb,
2023-02-19 12:56:24 +01:00
-- PSK with identity hint
-- psk = {
-- hint = "hintpsksample",
-- callback = pskcb,
-- },
2023-02-16 01:52:18 +01:00
}
-- [[ SSL context
local ctx = assert(ssl.newcontext(params))
--]]
local server = socket.tcp()
server:setoption('reuseaddr', true)
assert( server:bind("127.0.0.1", 8888) )
server:listen()
local peer = server:accept()
peer = assert( ssl.wrap(peer, ctx) )
assert( peer:dohandshake() )
print("--- INFO ---")
local info = peer:info()
for k, v in pairs(info) do
print(k, v)
end
print("---")
peer:close()
server:close()