From 93534057710cef4a88f18f441fea20e733ebc253 Mon Sep 17 00:00:00 2001 From: Hans Nilsson Date: Wed, 11 Oct 2017 12:35:38 +0200 Subject: public_key: Fix bug in pkix_verify_hostname with IP addresses An IP address could in some circomstances be converted to a list and then to_lower was applied to it. So {$A,1,1,1} was changed to {$a,1,1,1} which of course didn't match.... --- lib/public_key/test/public_key_SUITE_data/verify_hostname_ip.conf | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'lib/public_key/test/public_key_SUITE_data/verify_hostname_ip.conf') diff --git a/lib/public_key/test/public_key_SUITE_data/verify_hostname_ip.conf b/lib/public_key/test/public_key_SUITE_data/verify_hostname_ip.conf index 0a738f2586..798592e4f6 100644 --- a/lib/public_key/test/public_key_SUITE_data/verify_hostname_ip.conf +++ b/lib/public_key/test/public_key_SUITE_data/verify_hostname_ip.conf @@ -5,14 +5,13 @@ distinguished_name = DN [DN] C=SE CN=example.com -CN=5.6.7.8 [SAN] subjectAltName = @alt_names [alt_names] DNS = 1.2.3.4 -IP.1 = 5.6.7.8 +IP.1 = 10.67.16.75 IP.2 = abcd:ef::1 URI = https://10.11.12.13 -- cgit v1.2.3