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

CA认证

开发平台:

C/C++

  1. /*
  2.  * bn00.c - auto-size-detecting bn??.c file.
  3.  *
  4.  * Written in 1995 by Colin Plumb.  I'm not going to embarass myself
  5.  * by claiming copyright on something this trivial.
  6.  */
  7. #include "bnsize00.h"
  8. #if BNSIZE64
  9. /* Include all of the C source file by reference */
  10. #include "bn64.c"
  11. #include "bninit64.c"
  12. #elif BNSIZE32
  13. /* Include all of the C source file by reference */
  14. #include "bn32.c"
  15. #include "bninit32.c"
  16. #else /* BNSIZE16 */
  17. /* Include all of the C source file by reference */
  18. #include "bn16.c"
  19. #include "bninit16.c"
  20. #endif