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

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 "@(#)Signed.C 1.6 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. #include "Name.h"
  41. #include "X509Cert.h"
  42. #include "malloc.h"
  43. #include "Sig.h"
  44. #include "Signed.h"
  45. /*
  46.  * Signed class implementation.
  47.  */
  48. Signed::Signed()
  49. {
  50. // Rely on private member constructors
  51. }
  52. Signed::~Signed()
  53. {
  54. // Rely on private member destructors
  55. }
  56. Signed::Signed(const Signed &a)
  57. {
  58. signature = a.signature;
  59. sigalgid = a.sigalgid;
  60. input = a.input;
  61. encoded_signed = a.encoded_signed;
  62. return;
  63. }
  64. Signed&
  65. Signed:: operator =(const Signed &a)
  66. {
  67. signature = a.signature;
  68. sigalgid = a.sigalgid;
  69. input = a.input;
  70. encoded_signed = a.encoded_signed;
  71. return (*this);
  72. }
  73. // Supply encoded SIGNED object. This will decode it into
  74. // constituent parts.
  75. Signed::Signed(const Bstream& ainput)
  76. {
  77. Bstream der_stream = ainput;
  78. encoded_signed = ainput; // The full encoded/signed object
  79. // Decode to get the rest of the fields
  80. (void)asn1_der_decode_signed(der_stream, signature, sigalgid, input);
  81. return;
  82. }
  83. // Supply encoded SIGNED object. This will decode it into
  84. // constituent parts.
  85. int
  86. Signed::decode(const Bstream& ainput)
  87. {
  88. Bstream der_stream = ainput;
  89. encoded_signed = ainput; // The full encoded/signed object
  90. // Decode to get the rest of the fields
  91. return(asn1_der_decode_signed(der_stream, signature, sigalgid, input));
  92. }
  93. int
  94. asn1_der_decode_signed(Bstream& der_stream, Bstream& signature, 
  95.        AlgId& sigalgid, Bstream& input)
  96. {
  97. int retval, seqlen, len;
  98. byte tmp;
  99. // Decode an X.509 SIGNED object
  100. SEQUENCE
  101. {
  102. input = der_stream; // Will be adjusted
  103. (void)der_stream.fetchbyte(tmp); // skip past ID octet
  104.   // length of (unknown) type
  105. len = asn1_der_get_length(der_stream); 
  106. if (len < 0 || len > der_stream.getlength()) {
  107.     fprintf(stderr, 
  108.    "Bad ASN.1 encoding of signed object ToBeSignedn");
  109.     return (E_DER_DECODE_LEN_TOO_LONG);
  110. }
  111. der_stream.consume(len); // skip past unknown object
  112. int trunclen = der_stream.getlength();
  113. input.truncate(trunclen); // Adjust input
  114. SEQUENCE // AlgId
  115. {
  116. int begin, end, used, anylen;
  117. MARK_LEN(begin);
  118. OBJECT_IDENTIFIER(sigalgid.algid);
  119. MARK_LEN(end);
  120. used = begin - end;
  121. if ((anylen = seqlen - used) > 0) {
  122. Bstream any(anylen, DATAP);
  123. CONSUME(anylen);
  124. sigalgid.params = any;
  125. }
  126. }
  127. //  encrypted hash, i.e SIGNATURE
  128. BIT_STRING(signature);
  129. }
  130. }
  131. Bstream
  132. Signed::sign(const Bstream& tobesigned, const Bstream& privkey, 
  133.      const AlgId& asigalgid)
  134. {
  135. sigalgid = asigalgid;
  136. input = tobesigned;
  137. signature = ::sign(input, privkey, sigalgid.algid);
  138. encoded_signed = asn1_der_encode_signed(input, sigalgid, signature);
  139. return (encoded_signed);
  140. }
  141. VerifyResult
  142. Signed::verify(const PubKey& pubkey) const
  143. {
  144. #ifdef temporary
  145. return (::verify(input, signature, pubkey, sigalgid));
  146. #endif
  147. return VALID;
  148. }
  149. Bstream
  150. asn1_der_encode_signed(const Bstream& input, const AlgId& sigalgid, 
  151.        const Bstream& sig)
  152. {
  153. Bstream tmpstr;
  154. tmpstr = asn1_der_encode_null();
  155. tmpstr = sigalgid.algid.encode() + tmpstr;
  156. Bstream algid = asn1_der_encode_sequence(tmpstr); // Alg ID
  157. Bstream enc_sig =  asn1_der_encode_bit_string(sig);
  158. return (asn1_der_encode_sequence(input+algid+enc_sig));
  159. }
  160. Bstream
  161. Signed::getsignature() const
  162. {
  163. return (signature);
  164. }
  165. Bstream
  166. Signed::getinput() const
  167. {
  168. return (input);
  169. }
  170. Bstream
  171. Signed::getSigned() const
  172. {
  173. return (encoded_signed);
  174. }
  175. AlgId
  176. Signed::getsigalgid() const
  177. {
  178. return (sigalgid);
  179. }