SkipCert.C
上传用户:zbbssh
上传日期:2007-01-08
资源大小:196k
文件大小:3k
源码类别:

CA认证

开发平台:

C/C++

  1. /*
  2. ------------------------------------------------------------------
  3.   Copyright
  4.   Sun Microsystems, Inc.
  5.   Copyright (C) 1994, 1995, 1996 Sun Microsystems, Inc.  All Rights
  6.   Reserved.
  7.   Permission is hereby granted, free of charge, to any person
  8.   obtaining a copy of this software and associated documentation
  9.   files (the "Software"), to deal in the Software without
  10.   restriction, including without limitation the rights to use,
  11.   copy, modify, merge, publish, distribute, sublicense, and/or sell
  12.   copies of the Software or derivatives of the Software, and to 
  13.   permit persons to whom the Software or its derivatives is furnished 
  14.   to do so, subject to the following conditions:
  15.   The above copyright notice and this permission notice shall be
  16.   included in all copies or substantial portions of the Software.
  17.   THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  18.   EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
  19.   OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  20.   NONINFRINGEMENT.  IN NO EVENT SHALL SUN MICROSYSTEMS, INC., BE LIABLE
  21.   FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  22.   OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  23.   CONNECTION WITH THE SOFTWARE OR DERIVATES OF THIS SOFTWARE OR 
  24.   THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  25.   Except as contained in this notice, the name of Sun Microsystems, Inc.
  26.   shall not be used in advertising or otherwise to promote
  27.   the sale, use or other dealings in this Software or its derivatives 
  28.   without prior written authorization from Sun Microsystems, Inc.
  29. */
  30. #pragma ident "@(#)SkipCert.C 1.7 96/01/29 Sun Microsystems"
  31. #include <sys/types.h>
  32. #include <stdio.h>
  33. #include "Bstream.h"
  34. #include "Bigint.h"
  35. #include "SkipCert.h"
  36. #include "X509Cert.h"
  37. #include "X509skip.h"
  38. #include "HashCert.h"
  39. SkipCert *decode_SkipCert(int type, Bstream certstr)
  40. {
  41. SkipCert *result;
  42. switch(type) {
  43. case SKIP_CERT_X509:
  44. result = new X509SkipCert;
  45. result->decode(certstr);
  46. break;
  47. case SKIP_DH_PUBLIC:
  48. result = new HashCert;
  49. result->decode(certstr);
  50. break;
  51. case SKIP_CERT_PGP:
  52. case SKIP_CERT_DNS:
  53. default:
  54. return NULL;
  55. }
  56. return result;
  57. }
  58. int 
  59. Certname_to_num(char *s)
  60. {
  61. if (strcasecmp(s,"x509")==0)
  62. return SKIP_CERT_X509;
  63. if (strcasecmp(s,"x.509")==0)
  64. return SKIP_CERT_X509;
  65. if (strcasecmp(s,"PGP")==0)
  66. return SKIP_CERT_PGP;
  67. if (strcasecmp(s,"securedns")==0)
  68. return SKIP_CERT_DNS;
  69. if (strcasecmp(s,"secure dns")==0)
  70. return SKIP_CERT_DNS;
  71. if (strcasecmp(s,"Unsigned DH Public Value")==0)
  72. return SKIP_DH_PUBLIC;
  73. if (strcasecmp(s,"dhpublic")==0)
  74. return SKIP_DH_PUBLIC;
  75. if (strcasecmp(s,"public")==0)
  76. return SKIP_DH_PUBLIC;
  77. return 0;
  78. }
  79. char *num_to_Certname(int n)
  80. {
  81. switch(n){
  82. case 0:
  83. return "X.509";
  84. case 1: 
  85. return "PGP";
  86. case 2:
  87. return "SecureDNS";
  88. case 3:
  89. return "DHpublic";
  90. default:
  91. return "";
  92. }
  93. }