mirror of
https://github.com/nim-lang/Nim.git
synced 2026-02-15 23:54:19 +00:00
net.nim: support for TLS-PSK ciphersuites
This commit is contained in:
15
examples/ssl/pskclient.nim
Normal file
15
examples/ssl/pskclient.nim
Normal file
@@ -0,0 +1,15 @@
|
||||
# Create connection encrypted using preshared key (TLS-PSK).
|
||||
import net
|
||||
|
||||
static: assert defined(ssl)
|
||||
|
||||
let sock = newSocket()
|
||||
sock.connect("localhost", Port(8800))
|
||||
|
||||
proc clientFunc(identityHint: string): tuple[identity: string, psk: string] =
|
||||
echo "identity hint ", identityHint.repr
|
||||
return ("foo", "psk-of-foo")
|
||||
|
||||
let context = newContext(cipherList="PSK-AES256-CBC-SHA")
|
||||
context.clientGetPskFunc = clientFunc
|
||||
context.wrapConnectedSocket(sock, handshakeAsClient)
|
||||
20
examples/ssl/pskserver.nim
Normal file
20
examples/ssl/pskserver.nim
Normal file
@@ -0,0 +1,20 @@
|
||||
# Accept connection encrypted using preshared key (TLS-PSK).
|
||||
import net
|
||||
|
||||
static: assert defined(ssl)
|
||||
|
||||
let sock = newSocket()
|
||||
sock.bindAddr(Port(8800))
|
||||
sock.listen()
|
||||
|
||||
let context = newContext(cipherList="PSK-AES256-CBC-SHA")
|
||||
context.pskIdentityHint = "hello"
|
||||
context.serverGetPskFunc = proc(identity: string): string = "psk-of-" & identity
|
||||
|
||||
while true:
|
||||
var client = new(Socket)
|
||||
sock.accept(client)
|
||||
sock.setSockOpt(OptReuseAddr, true)
|
||||
echo "accepted connection"
|
||||
context.wrapConnectedSocket(client, handshakeAsServer)
|
||||
echo "got connection with identity ", client.getPskIdentity()
|
||||
Reference in New Issue
Block a user