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

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 "@(#)dsa.h 1.5 96/01/29 Sun Microsystems"
  31. #ifndef DSA_H
  32. #define DSA_H
  33. #include <stdio.h>
  34. extern int genRandBn(struct BigNum *bn, unsigned bits);
  35. extern int genKosherBn(struct BigNum *bn, unsigned bits, unsigned char high,
  36. unsigned char low, unsigned char *seed,
  37. unsigned len);
  38. extern int dsaGen(struct BigNum *p, unsigned pbits, struct BigNum *q,
  39. unsigned qbits, struct BigNum *g, struct BigNum *x,
  40. struct BigNum *y, unsigned char *seed,
  41. unsigned len, FILE *f);
  42. extern VerifyResult DSA_verify(const Bstream& data, const Bstream& sig,
  43. const PubKey& pubkey, AlgId sigalg);
  44. extern Bstream DSA_sign(const Bigint& p, const Bigint& q, const Bigint& g,
  45. const Bigint& x, const Bstream& data);
  46. extern int dsa_newcert(char *certreqFile, char *certFile, int lifetime,
  47. Bstream& passphrase);
  48. extern int asn1_der_decode_dsa_privkey(Bstream, Bigint& p, Bigint& q,
  49. Bigint& g, Bigint& x);
  50. extern Bstream asn1_der_encode_dsa_privkey(Bigint& p, Bigint& q,
  51. Bigint& g, Bigint& x);
  52. extern int asn1_der_decode_dsa_params(Bstream, Bigint& p, Bigint& q,
  53. Bigint& g);
  54. extern int asn1_der_decode_dsa_publickey(Bstream, Bigint& p, Bigint& q,
  55. Bigint& g, Bigint& y);
  56. extern Bstream asn1_der_encode_dsa_publickey(Bigint& p, Bigint& q,
  57. Bigint& g, Bigint& y);
  58. extern int asn1_der_decode_dsa_signature(Bstream, Bigint& r, Bigint& s);
  59. extern Bstream asn1_der_encode_dsa_signature(Bigint& r, Bigint& s);
  60. #endif