diff options
author | Yuki Ito <[email protected]> | 2015-07-24 13:51:12 +0900 |
---|---|---|
committer | Zandra <[email protected]> | 2015-09-11 09:41:22 +0200 |
commit | 16b0a43accfa24d623b341876a9c27ff33235914 (patch) | |
tree | e8ec13d751efa14b0a75a3591f069074dd4857c7 /lib/public_key/doc/src | |
parent | aa0c98308a8e77b9d9b77a845494673cbe1c4e04 (diff) | |
download | otp-16b0a43accfa24d623b341876a9c27ff33235914.tar.gz otp-16b0a43accfa24d623b341876a9c27ff33235914.tar.bz2 otp-16b0a43accfa24d623b341876a9c27ff33235914.zip |
Fix public_key doc
Diffstat (limited to 'lib/public_key/doc/src')
-rw-r--r-- | lib/public_key/doc/src/public_key.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/public_key/doc/src/public_key.xml b/lib/public_key/doc/src/public_key.xml index 209de2bdf7..b247618efc 100644 --- a/lib/public_key/doc/src/public_key.xml +++ b/lib/public_key/doc/src/public_key.xml @@ -498,13 +498,13 @@ <name>pkix_path_validation(TrustedCert, CertChain, Options) -> {ok, {PublicKeyInfo, PolicyTree}} | {error, {bad_cert, Reason}} </name> <fsummary>Performs a basic path validation according to RFC 5280.</fsummary> <type> - <v>TrustedCert = #'OTPCertificate'{} | der_encode() | atom()</v> + <v>TrustedCert = #'OTPCertificate'{} | der_encoded() | atom()</v> <d>Normally a trusted certificate, but it can also be a path-validation error that can be discovered while constructing the input to this function and that is to be run through the <c>verify_fun</c>. Examples are <c>unknown_ca</c> and <c>selfsigned_peer.</c> </d> - <v>CertChain = [der_encode()]</v> + <v>CertChain = [der_encoded()]</v> <d>A list of DER-encoded certificates in trust order ending with the peer certificate.</d> <v>Options = proplists:proplist()</v> <v>PublicKeyInfo = {?'rsaEncryption' | ?'id-dsa', |