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

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_encode.C 1.8 96/01/29 Sun Microsystems"
  31. #include <sys/types.h>
  32. #include <stdarg.h>
  33. #include <stdio.h>
  34. #include "my_types.h"
  35. #include "Time.h"
  36. #include "Bigint.h"
  37. #include "Bstream.h"
  38. #include "asn1_der.h"
  39. #include "ObjId.h"
  40. /*
  41.  * Encoding decoding routines for ASN.1 using
  42.  * the Basic Encoding Rules subset DER
  43.  */
  44. /*
  45.  * ASN.1 DER length octets encoding.
  46.  * We assume that the number of content
  47.  * octets will never exceed 2**32 octets.
  48.  * Take in number of bytes and return
  49.  * BER encoded length octets.
  50.  */
  51. Bstream
  52. asn1_der_set_length(int len)
  53. {
  54. int val = len;
  55. byte *bytep = (byte *)&val;
  56. #if defined(sparc)
  57. if (len < 128) {
  58. byte lenoctets[1];
  59. lenoctets[0] = bytep[3];
  60. return Bstream(sizeof(lenoctets), lenoctets);
  61. }
  62. if (len < 256) {
  63. byte lenoctets[2];
  64. lenoctets[0] = 0x81;
  65. lenoctets[1] = bytep[3];
  66. return Bstream(sizeof(lenoctets), lenoctets);
  67. if (bytep[0] == 0 && bytep[1] == 0) {
  68. byte lenoctets[3];
  69. lenoctets[0] = 0x82;
  70. lenoctets[1] = bytep[2]; // MSB here
  71. lenoctets[2] = bytep[3]; // LSB here
  72. return Bstream(sizeof(lenoctets), lenoctets);
  73. if (bytep[0] == 0) {
  74. byte lenoctets[4];
  75. lenoctets[0] = 0x83;
  76. lenoctets[1] = bytep[1]; // MSB here
  77. lenoctets[2] = bytep[2];
  78. lenoctets[3] = bytep[3]; // LSB here
  79. return Bstream(sizeof(lenoctets), lenoctets);
  80. } else {
  81. byte lenoctets[5];
  82. lenoctets[0] = 0x84;
  83. lenoctets[1] = bytep[1];
  84. lenoctets[2] = bytep[2];
  85. lenoctets[3] = bytep[3];
  86. lenoctets[4] = bytep[4];
  87. return Bstream(sizeof(lenoctets), lenoctets);
  88. }
  89. #else
  90. #if defined(i386)
  91.         if (len < 128) {
  92.                 byte lenoctets[1];
  93.                 lenoctets[0] = bytep[0];
  94.                 return Bstream(sizeof(lenoctets), lenoctets);
  95.         }
  96.         if (len < 256) {
  97.                 byte lenoctets[2];
  98.                 lenoctets[0] = 0x81;
  99.                 lenoctets[1] = bytep[0];
  100.                 return Bstream(sizeof(lenoctets), lenoctets);
  101.         }
  102.         if (bytep[3] == 0 && bytep[2] == 0) {
  103.                 byte lenoctets[3];
  104.                 lenoctets[0] = 0x82;
  105.                 lenoctets[1] = bytep[1];        // MSB here
  106.                 lenoctets[2] = bytep[0];        // LSB here
  107.                 return Bstream(sizeof(lenoctets), lenoctets);
  108.         }
  109. if (bytep[3] == 0) {
  110.                 byte lenoctets[4];
  111.                 lenoctets[0] = 0x83;
  112.                 lenoctets[1] = bytep[3];        // MSB here
  113.                 lenoctets[2] = bytep[2];
  114.                 lenoctets[3] = bytep[1];        // LSB here
  115.                 return Bstream(sizeof(lenoctets), lenoctets);
  116.         } else {
  117.                 byte lenoctets[5];
  118.                 lenoctets[0] = 0x84;
  119.                 lenoctets[1] = bytep[3];
  120.                 lenoctets[2] = bytep[2];
  121.                 lenoctets[3] = bytep[1];
  122.                 lenoctets[4] = bytep[0];
  123.                 return Bstream(sizeof(lenoctets), lenoctets);
  124.         }
  125. #else
  126. return "Archictecture not supported";
  127. #endif /* i386 */
  128. #endif /* sparc */
  129. }
  130. /*
  131.  * Encode an TAG value 
  132.  */
  133. Bstream
  134. asn1_der_encode_implicit_tagged(const Bstream& val, int tagvalue)
  135. {
  136. Bstream tmpstr(val);
  137. byte oldtype;
  138. (void)tmpstr.fetchbyte(oldtype);
  139. byte ID = 0x80 | (oldtype & 0x20) | (tagvalue & 0x1f) ;
  140. Bstream IDstr(1, &ID);
  141. return (IDstr + tmpstr);
  142. }
  143. /*
  144.  * Encode an SNMP TimeTicks
  145.  */
  146. Bstream
  147. asn1_der_encode_timeticks(const Bigint& val)
  148. {
  149. byte ID = 0x43;
  150. Bstream IDstr(1, &ID);
  151. Bstream intstr = Bigint_to_Bstr(val);
  152. Bstream lenstr = asn1_der_set_length(intstr.getlength());
  153. return (IDstr + lenstr + intstr);
  154. }
  155. /*
  156.  * Encode an SNMP NetworkAddress
  157.  */
  158. Bstream
  159. asn1_der_encode_network_addr(unsigned long addr)
  160. {
  161. byte ID = 0x40;
  162. Bstream IDstr(1, &ID);
  163. Bstream intstr(sizeof(addr), (byte *)&addr);
  164. Bstream lenstr = asn1_der_set_length(intstr.getlength());
  165. return (IDstr + lenstr + intstr);
  166. }
  167. /*
  168.  * Encode an INTEGER
  169.  */
  170. Bstream
  171. asn1_der_encode_integer(const Bigint& val)
  172. {
  173. byte ID = INTEGER_ID;
  174. Bstream IDstr(1, &ID);
  175. Bstream intstr = Bigint_to_Bstr(val);
  176. Bstream lenstr = asn1_der_set_length(intstr.getlength());
  177. return (IDstr + lenstr + intstr);
  178. }
  179. /*
  180.  * Encode a SEQUENCE
  181.  */
  182. Bstream
  183. asn1_der_encode_sequence(const Bstream& val)
  184. {
  185. byte ID = SEQUENCE_ID;
  186. Bstream IDstr(1, &ID);
  187. Bstream lenstr = asn1_der_set_length(val.getlength());
  188. return (IDstr + lenstr + val);
  189. }
  190. Bstream
  191. asn1_der_encode_sequence_of(const Bstream& val)
  192. {
  193. return (asn1_der_encode_sequence(val));
  194. }
  195. /*
  196.  * Encode a SET
  197.  */
  198. Bstream
  199. asn1_der_encode_set(const Bstream& val)
  200. {
  201. byte ID = SET_ID;
  202. Bstream IDstr(1, &ID);
  203. Bstream lenstr = asn1_der_set_length(val.getlength());
  204. return (IDstr + lenstr + val);
  205. }
  206. /*
  207.  * Encode NULL type
  208.  */
  209. Bstream
  210. asn1_der_encode_null()
  211. {
  212. byte ID = NULL_ID;
  213. Bstream IDstr(1, &ID);
  214. Bstream lenstr = asn1_der_set_length(0);
  215. return (IDstr + lenstr);
  216. }
  217. /*
  218.  *
  219.  * Encode a SET-OF
  220.  */
  221. Bstream
  222. asn1_der_encode_set_of(const Bstream& val)
  223. {
  224. byte ID = SET_OF_ID;
  225. Bstream IDstr(1, &ID);
  226. Bstream lenstr = asn1_der_set_length(val.getlength());
  227. return (IDstr + lenstr + val);
  228. }
  229. /*
  230.  * Encode a BIT-STRING
  231.  */
  232. Bstream
  233. asn1_der_encode_bit_string(const Bstream& val)
  234. {
  235. byte ID = BIT_STRING_ID;
  236. Bstream IDstr(1, &ID);
  237. Bstream lenstr = asn1_der_set_length(val.getlength()+1);
  238. byte unusedbits = 0;
  239. Bstream unused(1, &unusedbits);
  240. return (IDstr + lenstr + unused + val);
  241. }
  242. /*
  243.  * Encode an OCTET-STRING
  244.  */
  245. Bstream
  246. asn1_der_encode_octet_string(const Bstream& val)
  247. {
  248. byte ID = OCTET_STRING_ID;
  249. Bstream IDstr(1, &ID);
  250. Bstream lenstr = asn1_der_set_length(val.getlength());
  251. return (IDstr + lenstr + val);
  252. }
  253. /*
  254.  * Encode a PRINTABLE-STRING
  255.  */
  256. Bstream
  257. asn1_der_encode_printable_string(const Bstream& val)
  258. {
  259. byte ID = PRINTABLE_STRING_ID;
  260. Bstream IDstr(1, &ID);
  261. Bstream lenstr = asn1_der_set_length(val.getlength());
  262. return (IDstr + lenstr + val);
  263. }
  264. /*
  265.  * Encode a T61-STRING
  266.  */
  267. Bstream
  268. asn1_der_encode_T61_string(const Bstream& val)
  269. {
  270. byte ID = T61_STRING_ID;
  271. Bstream IDstr(1, &ID);
  272. Bstream lenstr = asn1_der_set_length(val.getlength());
  273. return (IDstr + lenstr + val);
  274. }
  275. inline int century(int year)
  276. {
  277. return ((year/100)*100);
  278. }
  279. /*
  280.  * Encode a UTCTime
  281.  */
  282. Bstream
  283. asn1_der_encode_utctime(const PCTime& time)
  284. {
  285. byte ID = UTCTime_ID;
  286. Bstream IDstr(1, &ID);
  287. char buf[13];
  288. GMtime gtime = time.get();
  289. gtime.year = gtime.year - century(gtime.year);
  290. sprintf(buf, "%.2d", gtime.year);
  291. sprintf(buf+2, "%.2d", gtime.month);
  292. sprintf(buf+4, "%.2d", gtime.day);
  293. sprintf(buf+6, "%.2d", gtime.hour);
  294. sprintf(buf+8, "%.2d", gtime.min);
  295. sprintf(buf+10, "%.2d", gtime.sec);
  296. sprintf(buf+12, "Z");
  297. Bstream lenstr = asn1_der_set_length(sizeof(buf));
  298. Bstream val =  Bstream(sizeof(buf), (byte *)buf);
  299. return (IDstr + lenstr + val);
  300. }
  301. /*
  302.  * Encode an OBJECT-IDENTIFIER
  303.  */
  304. Bstream
  305. asn1_der_encode_obj_id(const ObjId& objid)
  306. {
  307. return (objid.encode());
  308. }