From 8cee0d079821288d3aa9b6a039b11497d315d390 Mon Sep 17 00:00:00 2001
From: Hans Nilsson
Date: Thu, 28 Sep 2017 16:46:42 +0200
Subject: public_key: verify ip (both v4 and v6)
---
lib/public_key/doc/src/public_key.xml | 14 ++++++++++----
1 file changed, 10 insertions(+), 4 deletions(-)
(limited to 'lib/public_key/doc')
diff --git a/lib/public_key/doc/src/public_key.xml b/lib/public_key/doc/src/public_key.xml
index fcf37a7a4d..3040f2db0d 100644
--- a/lib/public_key/doc/src/public_key.xml
+++ b/lib/public_key/doc/src/public_key.xml
@@ -871,12 +871,13 @@ fun(#'DistributionPoint'{}, #'CertificateList'{},
Cert = der_encoded() | #'OTPCertificate'{}
ReferenceIDs = [ RefID ]
- RefID = {IdType,string()}
- IdType = dns_id | srv_id | uri_id
+ RefID = {dns_id,string()} | {srv_id,string()} | {uri_id,string()} | {ip,inet:ip_address()|string()} | {OtherRefID,term()}}
+ OtherRefID = atom()
Opts = [ PvhOpt() ]
PvhOpt = [MatchOpt | FailCallBackOpt | FqdnExtractOpt]
- MatchOpt = {fun(RefId | FQDN::string(), PresentedID) -> boolean() | default}
- PresentedID = {dNSName,string()} | {uniformResourceIdentifier,string()}
+ MatchOpt = {match_fun, fun(RefId | FQDN::string(), PresentedID) -> boolean() | default}
+ PresentedID = {dNSName,string()} | {uniformResourceIdentifier,string() | {iPAddress,list(byte())} | {OtherPresId,term()}}
+ OtherPresID = atom()
FailCallBackOpt = {fail_callback, fun(#'OTPCertificate'{}) -> boolean()}
FqdnExtractOpt = {fqdn_fun, fun(RefID) -> FQDN::string() | default | undefined}
@@ -893,6 +894,11 @@ fun(#'DistributionPoint'{}, #'CertificateList'{},
code examples
describes this function more detailed.
+ The {OtherRefId,term()} is defined by the user and is passed to the match_fun, if defined.
+ If that term is a binary, it will be converted to a string.
+
+ The ip takes a 4-tuple or a
+
--
cgit v1.2.3