1
0
mirror of https://github.com/certbot/certbot.git synced 2026-01-27 19:42:53 +03:00

Formatted SNI README

This commit is contained in:
James Kasten
2012-06-28 22:46:59 -04:00
parent 4ccaf0e275
commit e689c033a0
2 changed files with 10 additions and 4 deletions

View File

@@ -13,7 +13,11 @@ client.py - experimental tool for making requests and parsing replies
chocolate_protocol.proto - protocol definition; needs protobuf-compiler
sni_challenge - Assumes Apache server with name based virtual hosts is running (for intended address).
Call perform_sni_cert_challenge(address, r, nonce) to do the whole challenge.
sni_challenge -
Assumes Apache server with name based virtual hosts is running
(for intended address).
Call perform_sni_cert_challenge(address, r, nonce) to do the whole
challenge.
Example code is given in main method
Right now requires full path specification of CSR/KEY in the Global Variables (how should this be specified?)
Right now requires full path specification of CSR/KEY in the Global
Variables (how should this be specified?)

View File

@@ -1,3 +1,5 @@
Run Make
To verify challenge: make a call to verify_challenge(address, r, nonce). Nonce and r must match up to original challenge values. Example code is given in main().
Verify Challenge: make a call to verify_challenge(address, r, nonce)
Nonce and r must match up to original challenge values.
Example code is given in main().