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

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 "@(#)asn1_der.h 1.7 96/01/29 Sun Microsystems"
  31. #ifndef ASN1_DER_H
  32. #define ASN1_DER_H
  33. /*
  34.  * ASN.1 BER Identifier octet
  35.  */
  36. const int INTEGER_ID = 0x02;
  37. const int BIT_STRING_ID = 0x03;
  38. const int OCTET_STRING_ID = 0x04;
  39. const int NULL_ID = 0x05;
  40. const int OBJECT_IDENTIFIER_ID =  0x06;
  41. const int PRINTABLE_STRING_ID = 0x13;
  42. const int T61_STRING_ID = 0x14;
  43. const int UTCTime_ID =  0x17;
  44. const int SEQUENCE_ID =  0x30;
  45. const int SEQUENCE_OF_ID = 0x30;
  46. const int SET_ID =  0x31;
  47. const int SET_OF_ID =  0x31;
  48. /*
  49.  * ASN.1 DER DECODING ERRORS
  50.  */
  51. const int E_DER_DECODE_LEN_TOO_LONG =  -2;
  52. const int E_DER_DECODE_BAD_ID_OCTET =  -3;
  53. const int E_DER_DECODE_UNEXPECTED_EOS = -4;
  54. const int E_DER_DECODE_BAD_BITSTRING =  -5;
  55. const int E_DER_DECODE_UNALIGNED_BS =   -6; /* Bitstring not byte aligned */
  56. const int E_DER_DECODE_BAD_OBJID_SUBID = -7;
  57. const int E_DER_DECODE_BAD_TIME_STRING = -8;
  58. const int E_DER_DECODE_BAD_NULL_VALUE = -9;
  59. /*
  60.  * Macros to facilitate ASN.1 decoding
  61.  */
  62. #define DATAP (der_stream.getdatap())
  63. #define CONSUME(len)  (der_stream.consume(len))
  64. #define MARK_LEN(mark) (mark = der_stream.getlength())
  65. #define SEQUENCE          
  66. {       
  67. retval = asn1_der_decode_sequence(der_stream, seqlen);
  68. if (retval < 0) {        
  69. /* printf("SEQUENCE decode:"); */       
  70. return (retval);       
  71. }       
  72. }
  73. #define BEGIN_SEQUENCE_OF        
  74. {       
  75. retval = asn1_der_decode_sequence_of(der_stream, seqoflen);
  76. if (retval < 0) {        
  77. /* printf("SEQUENCE decode:"); */       
  78. return (retval);       
  79. }       
  80. }       
  81. while (seqoflen > 0) {       
  82. seqlenwhdr = der_stream.getlength();
  83. #define END_SEQUENCE_OF consumed = seqlenwhdr - der_stream.getlength(); 
  84. seqoflen -= consumed;       
  85. }
  86. #define INTEGER(integer)                
  87. {              
  88. retval = asn1_der_decode_integer(der_stream, integer);
  89.      if (retval < 0) {        
  90. /* printf("INTEGER decode:"); */       
  91. return (retval);       
  92.      }       
  93.     }
  94. #define ASN1_NULL                     
  95. {              
  96. retval = asn1_der_decode_null(der_stream);          
  97.      if (retval < 0) {        
  98. /* printf("ASN1_NULL decode:");  */           
  99. return (retval);       
  100.      }       
  101.     }
  102. #define UTCTime(time)                       
  103. {              
  104. retval = asn1_der_decode_utctime(der_stream, time);   
  105.      if (retval < 0) {        
  106. /* printf("UTCTime decode:"); */       
  107. return (retval);       
  108.      }       
  109.     }
  110. #define BIT_STRING(bitstring)                
  111. {              
  112. retval = asn1_der_decode_bit_string(der_stream, bitstring); 
  113.      if (retval < 0) {        
  114. /* printf("UTCTime decode:"); */       
  115. return (retval);       
  116.      }       
  117.     }
  118. #define ALGID(algid)        
  119. {       
  120. retval = asn1_der_decode_algid(der_stream, algid);    
  121.         if (retval < 0) {       
  122. /* printf("ALGID decode:"); */       
  123. return (retval);       
  124. }       
  125. }
  126. #define OCTET_STRING(string)        
  127. {       
  128. retval = asn1_der_decode_octet_string(der_stream, string);  
  129.         if (retval < 0) {       
  130. /* printf("OCTET-STRING decode:"); */       
  131. return (retval);       
  132. }       
  133. }
  134. /*
  135.  * C++ linkage.
  136.  */
  137. extern int asn1_der_get_length(Bstream&);
  138. extern int asn1_der_decode_integer(Bstream&, Bigint&);
  139. extern int asn1_der_decode_utctime(Bstream&, PCTime&);
  140. extern int asn1_der_decode_sequence(Bstream&, int&);
  141. extern int asn1_der_decode_sequence_of(Bstream&, int&);
  142. extern int asn1_der_decode_set(Bstream&, int&);
  143. extern int asn1_der_decode_set_of(Bstream&, int&);
  144. extern int asn1_der_decode_printable_string(Bstream&, Bstream&);
  145. extern int asn1_der_decode_bit_string(Bstream&, Bstream&);
  146. extern int asn1_der_decode_octet_string(Bstream&, Bstream&);
  147. extern int asn1_der_decode_null(Bstream&);
  148. extern void asn1_perror(int );
  149. extern Bstream asn1_der_encode_integer(const Bigint&);
  150. extern Bstream asn1_der_encode_sequence(const Bstream&);
  151. extern Bstream asn1_der_encode_sequence_of(const Bstream&);
  152. extern Bstream asn1_der_encode_set(const Bstream&);
  153. extern Bstream asn1_der_encode_set_of(const Bstream&);
  154. extern Bstream asn1_der_encode_null();
  155. extern Bstream asn1_der_encode_bit_string(const Bstream&);
  156. extern Bstream asn1_der_encode_octet_string(const Bstream&);
  157. extern Bstream asn1_der_encode_printable_string(const Bstream&);
  158. extern Bstream asn1_der_encode_T61_string(const Bstream&);
  159. extern Bstream asn1_der_encode_utctime(const PCTime&);
  160. extern Bstream asn1_der_encode_network_addr(unsigned long);
  161. extern Bstream asn1_der_encode_timeticks(const Bigint&);
  162. extern Bstream asn1_der_encode_implicit_tagged(const Bstream&, int);
  163. extern Bstream asn1_der_set_length(int);
  164. extern byte num_to_mask(int);
  165. #endif ASN1_DER_H