forked from h2o/picotls
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
picotls | ||
=== | ||
|
||
Picotls is a TLS 1.3 implementation written in C. | ||
|
||
The primary goal of the project is to create a tiny but fast TLS 1.3 implementation that can be used with the HTTP/2 protocol stack and the upcoming QUIC stack of the [H2O HTTP/2 server](https://h2o.examp1e.net). | ||
|
||
How to | ||
--- | ||
|
||
Build using cmake: | ||
``` | ||
% cmake | ||
% make | ||
``` | ||
|
||
Run the test server (at 127.0.0.1:8443): | ||
``` | ||
% ./cli -c /path/to/certificate.pem -k /path/to/private-key.pem 127.0.0.1 8443 | ||
``` | ||
|
||
Connect to the test server: | ||
``` | ||
% ./cli 127.0.0.1 8443 | ||
``` |