From 99adb49736e36f2a230082ec8da3450875f15c06 Mon Sep 17 00:00:00 2001 From: Derek Clarkson Date: Mon, 25 Jul 2016 14:19:10 +1000 Subject: [PATCH] More privatisation --- Source/SSLSecurity.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/SSLSecurity.swift b/Source/SSLSecurity.swift index b3257e4..454fdc6 100644 --- a/Source/SSLSecurity.swift +++ b/Source/SSLSecurity.swift @@ -55,7 +55,7 @@ public class SSLSecurity : NSObject { var isReady = false //is the key processing done? var certificates: [NSData]? //the certificates - var pubKeys: [SecKeyRef]? //the public keys + private var pubKeys: [SecKeyRef]? //the public keys var usePublicKeys = false //use public keys or certificate validation? /**