diff options
author | Ingela Anderton Andin <[email protected]> | 2012-05-11 10:12:25 +0200 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2012-05-11 10:12:25 +0200 |
commit | 6653b819f8bad11e06b52c1c371264e3389737bf (patch) | |
tree | 27ef77ddfbc11659749207562e6ad049cb936525 /lib | |
parent | 04745e3fbb5fe194bc7561f96300d821e7f9e2aa (diff) | |
parent | 6bc599855cf95b0f86883a956e443cab1d91291c (diff) | |
download | otp-6653b819f8bad11e06b52c1c371264e3389737bf.tar.gz otp-6653b819f8bad11e06b52c1c371264e3389737bf.tar.bz2 otp-6653b819f8bad11e06b52c1c371264e3389737bf.zip |
Merge branch 'ia/ssl/doc-improvment' into maint
* ia/ssl/doc-improvment:
Improved explanation of depth option
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ssl/doc/src/ssl.xml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/ssl/doc/src/ssl.xml b/lib/ssl/doc/src/ssl.xml index e019654685..28bf82b406 100644 --- a/lib/ssl/doc/src/ssl.xml +++ b/lib/ssl/doc/src/ssl.xml @@ -193,13 +193,13 @@ </item> <tag>{depth, integer()}</tag> - <item>Specifies the maximum - verification depth, i.e. how far in a chain of certificates the - verification process can proceed before the verification is - considered to fail. Peer certificate = 0, CA certificate = 1, - higher level CA certificate = 2, etc. The value 2 thus means - that a chain can at most contain peer cert, CA cert, next CA - cert, and an additional CA cert. The default value is 1. + <item> + The depth is the maximum number of non-self-issued + intermediate certificates that may follow the peer certificate + in a valid certification path. So if depth is 0 the PEER must + be signed by the trusted ROOT-CA directly, if 1 the path can + be PEER, CA, ROOT-CA, if it is 2 PEER, CA, CA, ROOT-CA and so + on. The default value is 1. </item> <tag>{verify_fun, {Verifyfun :: fun(), InitialUserState :: term()}}</tag> |