Certificate usage support for https

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@19911 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-Macdonald 2004-08-24 09:16:58 +00:00
parent ec6bac6449
commit 9ecde501c6
4 changed files with 43 additions and 0 deletions

View file

@ -90,6 +90,25 @@ GS_EXPORT NSString * const GSHTTPPropertyProxyHostKey;
* obtain proxy port.
*/
GS_EXPORT NSString * const GSHTTPPropertyProxyPortKey;
/**
* Key for passing to [NSURLHandle]'s <code>propertyForKey..</code> methods to
* specify the location of an SSL certificate file.
*/
GS_EXPORT NSString * const GSHTTPSCertificateFileKey;
/**
* Key for passing to [NSURLHandle]'s <code>propertyForKey..</code> methods to
* specify the location of an SSL key file.
*/
GS_EXPORT NSString * const GSHTTPSKeyFileKey;
/**
* Key for passing to [NSURLHandle]'s <code>propertyForKey..</code> methods to
* specify the password for an SSL key file.
*/
GS_EXPORT NSString * const GSHTTPSKeyPasswordKey;
#endif
/**