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

CA认证

开发平台:

WINDOWS

  1. /*
  2.  * NSS utility functions
  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: authcert.c,v 1.1 2000/03/31 19:31:20 relyea%netscape.com Exp $
  36.  */
  37. #include <stdio.h>
  38. #include <string.h>
  39. #include "prerror.h"
  40. #include "secitem.h"
  41. #include "prnetdb.h"
  42. #include "cert.h"
  43. #include "nspr.h"
  44. #include "secder.h"
  45. #include "key.h"
  46. #include "nss.h"
  47. #include "ssl.h"
  48. #include "pk11func.h" /* for PK11_ function calls */
  49. /*
  50.  * This callback used by SSL to pull client sertificate upon
  51.  * server request
  52.  */
  53. SECStatus 
  54. NSS_GetClientAuthData(void *                       arg, 
  55.                       PRFileDesc *                 socket, 
  56.       struct CERTDistNamesStr *    caNames, 
  57.       struct CERTCertificateStr ** pRetCert, 
  58.       struct SECKEYPrivateKeyStr **pRetKey)
  59. {
  60.   CERTCertificate *  cert;
  61.   SECKEYPrivateKey * privkey;
  62.   char *             chosenNickName = (char *)arg;    /* CONST */
  63.   void *             proto_win  = NULL;
  64.   SECStatus          rv         = SECFailure;
  65.   
  66.   proto_win = SSL_RevealPinArg(socket);
  67.   
  68.   if (chosenNickName) {
  69.     cert = PK11_FindCertFromNickname(chosenNickName, proto_win);
  70.     if ( cert ) {
  71.       privkey = PK11_FindKeyByAnyCert(cert, proto_win);
  72.       if ( privkey ) {
  73. rv = SECSuccess;
  74.       } else {
  75. CERT_DestroyCertificate(cert);
  76.       }
  77.     }
  78.   } else { /* no name given, automatically find the right cert. */
  79.     CERTCertNicknames * names;
  80.     int                 i;
  81.       
  82.     names = CERT_GetCertNicknames(CERT_GetDefaultCertDB(),
  83.   SEC_CERT_NICKNAMES_USER, proto_win);
  84.     if (names != NULL) {
  85.       for (i = 0; i < names->numnicknames; i++) {
  86. cert = PK11_FindCertFromNickname(names->nicknames[i],proto_win);
  87. if ( !cert )
  88.   continue;
  89. /* Only check unexpired certs */
  90. if (CERT_CheckCertValidTimes(cert, PR_Now(), PR_TRUE) != 
  91.     secCertTimeValid ) {
  92.   CERT_DestroyCertificate(cert);
  93.   continue;
  94. }
  95. rv = NSS_CmpCertChainWCANames(cert, caNames);
  96. if ( rv == SECSuccess ) {
  97.   privkey = PK11_FindKeyByAnyCert(cert, proto_win);
  98.   if ( privkey )
  99.     break;
  100. }
  101. rv = SECFailure;
  102. CERT_DestroyCertificate(cert);
  103.       } 
  104.       CERT_FreeNicknames(names);
  105.     }
  106.   }
  107.   if (rv == SECSuccess) {
  108.     *pRetCert = cert;
  109.     *pRetKey  = privkey;
  110.   }
  111.   return rv;
  112. }