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

CA认证

开发平台:

C/C++

  1. /*
  2.   Copyright
  3.   Sun Microsystems, Inc.
  4.   Copyright (C) 1994, 1995, 1996 Sun Microsystems, Inc.  All Rights
  5.   Reserved.
  6.   Permission is hereby granted, free of charge, to any person
  7.   obtaining a copy of this software and associated documentation
  8.   files (the "Software"), to deal in the Software without
  9.   restriction, including without limitation the rights to use,
  10.   copy, modify, merge, publish, distribute, sublicense, and/or sell
  11.   copies of the Software or derivatives of the Software, and to 
  12.   permit persons to whom the Software or its derivatives is furnished 
  13.   to do so, subject to the following conditions:
  14.   The above copyright notice and this permission notice shall be
  15.   included in all copies or substantial portions of the Software.
  16.   THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  17.   EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
  18.   OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  19.   NONINFRINGEMENT.  IN NO EVENT SHALL SUN MICROSYSTEMS, INC., BE LIABLE
  20.   FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  21.   OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  22.   CONNECTION WITH THE SOFTWARE OR DERIVATES OF THIS SOFTWARE OR 
  23.   THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  24.   Except as contained in this notice, the name of Sun Microsystems, Inc.
  25.   shall not be used in advertising or otherwise to promote
  26.   the sale, use or other dealings in this Software or its derivatives 
  27.   without prior written authorization from Sun Microsystems, Inc.
  28. */
  29. #pragma ident "@(#)print_cert.C 1.6 96/01/29"
  30. #include <sys/types.h>
  31. #include <stdio.h>
  32. #include <stdlib.h>
  33. #include <unistd.h>
  34. #include <iostream.h>
  35. #include <Bstream.h>
  36. #include <Bigint.h>
  37. #include <SkipCert.h>
  38. void usage(char *argv){
  39. fprintf(stderr,
  40. "%s -t type certificate-file-namen", argv);
  41. exit(1);
  42. }
  43. main(int argc, char *argv[])
  44. {
  45. int c;
  46. SkipCert *cert;
  47. Bstream x;
  48. int type = SKIP_CERT_X509;
  49. extern char *optarg;
  50. extern int  optind;
  51. while ((c = getopt(argc, argv, "t:")) != EOF) 
  52. switch(c) {
  53. case 't':
  54. type=atoi(optarg);
  55. if (type == 0)
  56. type=Certname_to_num(optarg);
  57. if (type == 0){
  58. fprintf(stderr,
  59. "unsupported certificate typen");
  60. exit(1);
  61. }
  62. break;
  63. default:
  64. usage(argv[0]);
  65. }
  66. if (optind >= argc) 
  67. usage(argv[0]);
  68. x=File_to_Bstr(argv[optind]);
  69. if (x.getlength() == 0) {
  70. fprintf(stderr,
  71. "Certificate %s not foundn",
  72. argv[optind]);
  73. exit(1);
  74. }
  75. cert = decode_SkipCert(type, x);
  76. cert->print();
  77. }