Compare commits
No commits in common. "bc8867eb227c95931462c2f19c8a67763e6f1733" and "6f596f1dcbee812dd7feff1bc6664cdc7944f2a3" have entirely different histories.
bc8867eb22
...
6f596f1dcb
@ -143,9 +143,8 @@ Client Certificates
|
|||||||
certificate specified by the respective server's `tls_cert` option if you add
|
certificate specified by the respective server's `tls_cert` option if you add
|
||||||
`sasl` to the `capabilities` option and the server supports this.
|
`sasl` to the `capabilities` option and the server supports this.
|
||||||
|
|
||||||
'xD' and 'xS' use SHA-256 fingerprints of TLS client certificates
|
'xD' uses SHA-256 fingerprints of TLS client certificates to authenticate users.
|
||||||
to authenticate users. To get the fingerprint from a certificate file
|
To get the fingerprint from a certificate file in the required form, use:
|
||||||
in the required form, use:
|
|
||||||
|
|
||||||
$ openssl x509 -in public.pem -outform DER | sha256sum
|
$ openssl x509 -in public.pem -outform DER | sha256sum
|
||||||
|
|
||||||
|
4
test
4
test
@ -1,7 +1,5 @@
|
|||||||
#!/usr/bin/expect -f
|
#!/usr/bin/expect -f
|
||||||
# Very basic end-to-end testing for CI
|
# Very basic end-to-end testing for CI
|
||||||
set tempdir [exec mktemp -d]
|
|
||||||
set ::env(XDG_CONFIG_HOME) $tempdir
|
|
||||||
|
|
||||||
# Run the daemon to test against
|
# Run the daemon to test against
|
||||||
system ./xD --write-default-cfg
|
system ./xD --write-default-cfg
|
||||||
@ -29,7 +27,7 @@ expect "Option changed"
|
|||||||
send "/disconnect\n"
|
send "/disconnect\n"
|
||||||
expect "]"
|
expect "]"
|
||||||
send "/connect\n"
|
send "/connect\n"
|
||||||
expect "Welcome to"
|
expect "Connection established"
|
||||||
|
|
||||||
# Try some chatting
|
# Try some chatting
|
||||||
send "/join #test\n"
|
send "/join #test\n"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user