From 2f92c34e3938641f7cc3e553953d676d2e95ea2d Mon Sep 17 00:00:00 2001 From: lloyd Date: Tue, 16 Oct 2007 16:21:48 +0000 Subject: Add support for IPv4 addresses in the X.509 alternative name extension. Original patch from Yves Jerschow. --- src/x509self.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/x509self.cpp') diff --git a/src/x509self.cpp b/src/x509self.cpp index 255ee6219..1c94324ed 100644 --- a/src/x509self.cpp +++ b/src/x509self.cpp @@ -50,7 +50,7 @@ void load_info(const X509_Cert_Options& opts, X509_DN& subject_dn, subject_dn.add_attribute("X520.Organization", opts.organization); subject_dn.add_attribute("X520.OrganizationalUnit", opts.org_unit); subject_dn.add_attribute("X520.SerialNumber", opts.serial_number); - subject_alt = AlternativeName(opts.email, opts.uri, opts.dns); + subject_alt = AlternativeName(opts.email, opts.uri, opts.dns, opts.ip); subject_alt.add_othername(OIDS::lookup("PKIX.XMPPAddr"), opts.xmpp, UTF8_STRING); } -- cgit v1.2.3