sslreveal.c
上传用户:lyxiangda
上传日期:2007-01-12
资源大小:3042k
文件大小:3k
源码类别:

CA认证

开发平台:

WINDOWS

  1. /* 
  2.  * Accessor functions for SSLSocket private members.
  3.  *
  4.  * The contents of this file are subject to the Mozilla Public
  5.  * License Version 1.1 (the "License"); you may not use this file
  6.  * except in compliance with the License. You may obtain a copy of
  7.  * the License at http://www.mozilla.org/MPL/
  8.  * 
  9.  * Software distributed under the License is distributed on an "AS
  10.  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  11.  * implied. See the License for the specific language governing
  12.  * rights and limitations under the License.
  13.  * 
  14.  * The Original Code is the Netscape security libraries.
  15.  * 
  16.  * The Initial Developer of the Original Code is Netscape
  17.  * Communications Corporation.  Portions created by Netscape are 
  18.  * Copyright (C) 1994-2000 Netscape Communications Corporation.  All
  19.  * Rights Reserved.
  20.  * 
  21.  * Contributor(s):
  22.  * 
  23.  * Alternatively, the contents of this file may be used under the
  24.  * terms of the GNU General Public License Version 2 or later (the
  25.  * "GPL"), in which case the provisions of the GPL are applicable 
  26.  * instead of those above.  If you wish to allow use of your 
  27.  * version of this file only under the terms of the GPL and not to
  28.  * allow others to use your version of this file under the MPL,
  29.  * indicate your decision by deleting the provisions above and
  30.  * replace them with the notice and other provisions required by
  31.  * the GPL.  If you do not delete the provisions above, a recipient
  32.  * may use your version of this file under either the MPL or the
  33.  * GPL.
  34.  *
  35.  * $Id: sslreveal.c,v 1.1 2000/03/31 19:35:30 relyea%netscape.com Exp $
  36.  */
  37. #include "cert.h"
  38. #include "ssl.h"
  39. #include "certt.h"
  40. #include "sslimpl.h"
  41. /* given PRFileDesc, returns a copy of certificate associated with the socket
  42.  * the caller should delete the cert when done with SSL_DestroyCertificate
  43.  */
  44. CERTCertificate * 
  45. SSL_RevealCert(PRFileDesc * fd)
  46. {
  47.   CERTCertificate * cert = NULL;
  48.   sslSocket * sslsocket = NULL;
  49.   sslsocket = ssl_FindSocket(fd);
  50.   
  51.   /* CERT_DupCertificate increases reference count and returns pointer to 
  52.    * the same cert
  53.    */
  54.   if (sslsocket && sslsocket->sec)
  55.     cert = CERT_DupCertificate(sslsocket->sec->peerCert);
  56.   
  57.   return cert;
  58. }
  59. /* given PRFileDesc, returns a pointer to PinArg associated with the socket
  60.  */
  61. void * 
  62. SSL_RevealPinArg(PRFileDesc * fd)
  63. {
  64.   sslSocket * sslsocket = NULL;
  65.   void * PinArg = NULL;
  66.   
  67.   sslsocket = ssl_FindSocket(fd);
  68.   
  69.   /* is pkcs11PinArg part of the sslSocket or sslSecurityInfo ? */
  70.   if (sslsocket)
  71.     PinArg = sslsocket->pkcs11PinArg;
  72.   
  73.   return PinArg;
  74. }
  75. /* given PRFileDesc, returns a pointer to the URL associated with the socket
  76.  * the caller should free url when done  
  77.  */
  78. char * 
  79. SSL_RevealURL(PRFileDesc * fd)
  80. {
  81.   sslSocket * sslsocket = NULL;
  82.   char * url = NULL;
  83.   sslsocket = ssl_FindSocket(fd);
  84.   
  85.   if (sslsocket && sslsocket->url)
  86.     url = PL_strdup(sslsocket->url);
  87.   
  88.   return url;
  89. }