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

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 "@(#)Sig.C 1.12 96/01/29 Sun Microsystems"
  31. #include <sys/types.h>
  32. #include <stdarg.h>
  33. #include <stdio.h>
  34. #include "Time.h"
  35. #include "Bigint.h"
  36. #include "Bstream.h"
  37. #include "asn1_der.h"
  38. #include "ObjId.h"
  39. #include "Name.h"
  40. #include "X509Cert.h"
  41. #include "Sig.h"
  42. #include "md2.h"
  43. #include "md5.h"
  44. #include "sha.h"
  45. #include "dsa.h"
  46. VerifyResult
  47. static RSA_verify(const Bstream&, const Bstream&, const PubKey&, AlgId);
  48. /* Note: This is basically a stub library.  It won't do RSA Signatures  */
  49. Bstream
  50. messageDigest(const Bstream& in, const ObjId& sigoid)
  51. {
  52. int status;
  53. byte digest[20];
  54. unsigned int digestLen;
  55. if (sigoid == md2WithRSAEncryption || sigoid == md2) {
  56. // we use the public domain implementation of MD2
  57. xMD2Context context;
  58. xMD2Init(&context);
  59. xMD2Update(&context,in.getdatap(), in.getlength());
  60. xMD2Final(&context, digest);
  61. digestLen = 16;
  62. } else if (sigoid == md5WithRSAEncryption || sigoid == md5) {
  63. // we use the public domain implementation of MD5
  64. xMD5Context context;
  65. xMD5Init(&context);
  66. xMD5Update(&context, in.getdatap(), in.getlength());
  67. xMD5Final(digest, &context);
  68. digestLen = 16;
  69. } else if (sigoid == dsaWithSHA || sigoid == sha) {
  70. // we use the public domain implementation of SHA
  71. struct SHAContext context;
  72. shaInit(&context);
  73. shaUpdate(&context, in.getdatap(), in.getlength());
  74. shaFinal(&context, digest);
  75. digestLen = 20;
  76. } else {
  77. Bstream nullbstr;
  78. fprintf(stderr,
  79. "messageDigest: unrecognized signature algorithmn");
  80. return (nullbstr);
  81. }
  82. Bstream hash(digestLen, digest);
  83. return (hash);
  84. }
  85. int decode_privatekey(const Bstream &privkeystr, void *privateKey)
  86. {
  87. Bstream der_stream = privkeystr;
  88. int seqlen;
  89. Bigint modulus,pubexp,privexp, prime1,prime2, exponent1,
  90.        exponent2, coefficient;
  91. int retval;
  92. retval = asn1_der_decode_sequence(der_stream, seqlen);
  93. if (retval < 0) { 
  94. printf("Bad Key encodingn"); 
  95. return INVALID_SIG;
  96. }
  97.         retval = asn1_der_decode_integer(der_stream, modulus);
  98. if (retval < 0) {
  99. printf("Bad Key encodingn"); 
  100. return INVALID_SIG;
  101. }
  102.   retval = asn1_der_decode_integer(der_stream, pubexp);
  103. if (retval < 0) {
  104. printf("Bad Key encodingn"); 
  105. return INVALID_SIG;
  106. }
  107.   retval = asn1_der_decode_integer(der_stream, privexp);
  108. if (retval < 0) {
  109. printf("Bad Key encodingn"); 
  110. return INVALID_SIG;
  111. }
  112.   retval = asn1_der_decode_integer(der_stream, prime1);
  113. if (retval < 0) {
  114. printf("Bad Key encodingn"); 
  115. return INVALID_SIG;
  116. }
  117.   retval = asn1_der_decode_integer(der_stream, prime2);
  118. if (retval < 0) {
  119. printf("Bad Key encodingn"); 
  120. return INVALID_SIG;
  121. }
  122.   retval = asn1_der_decode_integer(der_stream, exponent1);
  123. if (retval < 0) {
  124. printf("Bad Key encodingn"); 
  125. return INVALID_SIG;
  126. }
  127.   retval = asn1_der_decode_integer(der_stream, exponent2);
  128. if (retval < 0) {
  129. printf("Bad Key encodingn"); 
  130. return INVALID_SIG;
  131. }
  132.   retval = asn1_der_decode_integer(der_stream, coefficient);
  133. if (retval < 0) {
  134. printf("Bad Key encodingn"); 
  135. return INVALID_SIG;
  136. }
  137. /* Fill in the struct with these values and return it*/
  138. return 0;
  139. }
  140. // Sign binary string input, using ASN.1 encoded private key, (PKCS #1
  141. // compliant) privkey, using signature algorithm sigoid.
  142. Bstream
  143. sign(const Bstream& tobesigned, const Bstream& privkeystr, const ObjId& sigoid)
  144. {
  145. int status = 0;
  146. unsigned int signedInfoLen;
  147. byte signedInfo[256];
  148. int sigalgtype;
  149. Bstream nullbstr, signature;
  150. Bigint p, q, g, x;
  151. // decode the private key
  152. if (sigoid == md2WithRSAEncryption || sigoid == md5WithRSAEncryption) {
  153. } else if (sigoid == dsaWithSHA) {
  154. Bstream der_stream = privkeystr;
  155. status = asn1_der_decode_dsa_privkey(der_stream, p, q, g, x);
  156. if (status < 0) {
  157. fprintf(stderr,
  158. "sign: error decoding DSA private keyn");
  159. return (nullbstr);
  160. }
  161. } else {
  162. fprintf(stderr, "sign: unrecognized signature algorithmn");
  163. return (nullbstr);
  164. }
  165. if (sigoid == md2WithRSAEncryption || sigoid == md5WithRSAEncryption) {
  166. printf("Won't signn");
  167. }
  168. if (sigoid == dsaWithSHA) {
  169. signature = DSA_sign(p, q, g, x, tobesigned);
  170. }
  171. return (signature);
  172. }
  173. VerifyResult
  174. verify_sig(const Bstream& data, const Bstream& sig, const PubKey& pubkey, 
  175.    AlgId sigalg)
  176. {
  177. if (sigalg.algid == md2WithRSAEncryption || 
  178.     sigalg.algid == md5WithRSAEncryption) 
  179. return RSA_verify(data, sig, pubkey, sigalg);
  180. else if (sigalg.algid == dsaWithSHA)
  181. return DSA_verify(data, sig, pubkey, sigalg);
  182. fprintf(stderr, "Unrecognized Signature Algorithm IDn");
  183. return INVALID_SIG;
  184. }
  185. static VerifyResult
  186. RSA_verify(const Bstream& data, const Bstream& sig, const PubKey& pubkey, 
  187.    AlgId sigalg)
  188. {
  189. int alg;
  190. int n;
  191. int retval, seqlen;
  192. Bigint modulus, exponent;
  193. Bstream der_stream = pubkey.key;
  194. retval = asn1_der_decode_sequence(der_stream, seqlen);
  195. if (retval < 0) { 
  196. printf("Bad Key encodingn"); 
  197. return INVALID_SIG;
  198. }
  199. retval = asn1_der_decode_integer(der_stream, modulus);
  200. if (retval < 0) {
  201. printf("Bad Key encodingn"); 
  202. return INVALID_SIG;
  203. }
  204. retval = asn1_der_decode_integer(der_stream, exponent);
  205. if (retval < 0) {
  206. printf("Bad Key encodingn"); 
  207. return INVALID_SIG;
  208. }
  209. fprintf(stderr,"WARNING: Certificate NOT Verified - Presumed Correctn");
  210. n=0;   // We (errorneously) assume that the verification succeded
  211. if (n)
  212. return INVALID_SIG;
  213. else
  214. return VALID;
  215. }