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

CA认证

开发平台:

WINDOWS

  1. /* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
  2. /*
  3.  * The contents of this file are subject to the Mozilla Public
  4.  * License Version 1.1 (the "License"); you may not use this file
  5.  * except in compliance with the License. You may obtain a copy of
  6.  * the License at http://www.mozilla.org/MPL/
  7.  * 
  8.  * Software distributed under the License is distributed on an "AS
  9.  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  10.  * implied. See the License for the specific language governing
  11.  * rights and limitations under the License.
  12.  * 
  13.  * The Original Code is the Netscape security libraries.
  14.  * 
  15.  * The Initial Developer of the Original Code is Netscape
  16.  * Communications Corporation.  Portions created by Netscape are 
  17.  * Copyright (C) 1994-2000 Netscape Communications Corporation.  All
  18.  * Rights Reserved.
  19.  * 
  20.  * Contributor(s):
  21.  * 
  22.  * Alternatively, the contents of this file may be used under the
  23.  * terms of the GNU General Public License Version 2 or later (the
  24.  * "GPL"), in which case the provisions of the GPL are applicable 
  25.  * instead of those above.  If you wish to allow use of your 
  26.  * version of this file only under the terms of the GPL and not to
  27.  * allow others to use your version of this file under the MPL,
  28.  * indicate your decision by deleting the provisions above and
  29.  * replace them with the notice and other provisions required by
  30.  * the GPL.  If you do not delete the provisions above, a recipient
  31.  * may use your version of this file under either the MPL or the
  32.  * GPL.
  33.  */
  34. #ifndef __SSM_SSLSKST_H__
  35. #define __SSM_SSLSKST_H__
  36. #include <stdio.h>
  37. #include <string.h>
  38. #include "prerror.h"
  39. #include "pk11func.h"
  40. #include "secitem.h"
  41. #include "ssl.h"
  42. #include "prnetdb.h"
  43. #include "certt.h"
  44. #include "nss.h"
  45. #include "nspr.h"
  46. #include "secrng.h"
  47. #include "secder.h"
  48. #include "key.h"
  49. #include "sslproto.h"
  50. #include "ctrlconn.h"
  51. #include "dataconn.h"
  52. #include "certres.h"
  53. /* Initialization parameters for an SSMSSLSocketStatus. */
  54. /*
  55.   SSL Socket Status object. This encapsulates the information about an SSL
  56.   connection.
  57.  */
  58. typedef struct SSMSSLSocketStatus
  59. {
  60.     SSMResource super;
  61.     PRUint32 m_keySize;
  62.     PRUint32 m_secretKeySize;
  63.     PRInt32 m_level;
  64.     char *m_cipherName;
  65. PRInt32 m_error;
  66.     SSMResourceCert *m_cert; /* placeholder - will we want to get an
  67.                                 SSMCertificate object ref later? */
  68. } SSMSSLSocketStatus;
  69. SSMStatus SSMSSLSocketStatus_Create(void *arg, SSMControlConnection * conn, 
  70.                                    SSMResource **res);
  71. SSMStatus SSMSSLSocketStatus_Init(SSMSSLSocketStatus *ss, 
  72.                                  SSMControlConnection * connection,
  73.                                  PRFileDesc *fd, SSMResourceType type);
  74. SSMStatus SSMSSLSocketStatus_Destroy(SSMResource *res, PRBool doFree);
  75. void SSMSSLSocketStatus_Invariant(SSMSSLSocketStatus *ss);
  76. SSMStatus SSMSSLSocketStatus_GetAttrIDs(SSMResource *res,
  77.                                        SSMAttributeID **ids,
  78.                                        PRIntn *count);
  79. SSMStatus SSMSSLSocketStatus_GetAttr(SSMResource *res,
  80.                                      SSMAttributeID attrID,
  81.                                      SSMResourceAttrType attrType,
  82.                                      SSMAttributeValue *value);
  83. SSMStatus SSMSSLSocketStatus_Pickle(SSMResource *res, PRIntn * len,
  84.                                    void **value);
  85. SSMStatus SSMSSLSocketStatus_Unpickle(SSMResource **res, 
  86.                                      SSMControlConnection * conn, PRIntn len, 
  87.                                      void *value);
  88. SSMStatus SSMSSLSocketStatus_HTML(SSMResource *res, PRIntn *len, void ** value);
  89. /*
  90.  * Function: SSMStatus SSMSSLSocketStatus_UpdateSecurityStatus()
  91.  * Purpose: updates the security status
  92.  * Arguments and return values:
  93.  * - ss: socket status (it should not be NULL when called)
  94.  * - socket: SSL socket
  95.  * - returns: PR_SUCCESS if the update is successful; PR_FAILURE otherwise
  96.  *
  97.  * Note: if the update fails, one can keep doing other work but (obviously)
  98.  *       should not attempt to use any of the security-related values
  99.  */
  100. SSMStatus SSMSSLSocketStatus_UpdateSecurityStatus(SSMSSLSocketStatus* ss,
  101.                                                  PRFileDesc* socket);
  102. /*
  103.  * The following string are used to present security status in HTML format.
  104.  */
  105. #ifdef XP_UNIX
  106. #define SECURITY_LOW_MESSAGE                        "This is a secure document that uses a medium-grade encryption key suitednfor U.S. export"
  107. #define SECURITY_HIGH_MESSAGE                        "This is a secure document that uses a high-grade encryption key for U.S.ndomestic use only"
  108. #define SECURITY_NO_MESSAGE                          "This is an insecure document that is not encrypted and offers no securitynprotection."
  109. #else
  110. #define SECURITY_LOW_MESSAGE                         "This is a secure document that uses a medium-grade encryption key suited for U.S. export"
  111. #define SECURITY_HIGH_MESSAGE                         "This is a secure document that uses a high-grade encryption key for U.S. domestic use only"
  112. #define SECURITY_NO_MESSAGE                           "This is an insecure document that is not encrypted and offers no security protection."
  113. #endif
  114. #endif