facebookincubator / fizz

C++14 implementation of the TLS-1.3 standard
Other
1.14k stars 162 forks source link

How to use delegated credential in fizz s_server ...? #51

Closed Neo-ZK closed 4 years ago

Neo-ZK commented 4 years ago

I'd like to try the feature of DelegatedCredential, but I didn't find any doc or manual in fizz s_sever -help, so how can I use it in fizz s_client and fizz s_server?

reanimus commented 4 years ago

At the moment, only the client-side support has landed. Server-side support is in the process of review and should be landed soon as well. If you look at the client, it has some setup for the client, if you'd like to take a look: https://github.com/facebookincubator/fizz/blob/master/fizz/tool/FizzClientCommand.cpp#L555-L561

You can try it with the client by using the -delegatedcred flag.

Neo-ZK commented 4 years ago

Thanks a lot :-)