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

CA认证

开发平台:

C/C++

  1. /*
  2.  * bninit16.c - Provide an init function that sets things up for 16-bit
  3.  * operation.  This is a seaparate tiny file so you can compile two bn
  4.  * packages into the library and write a custom init routine.
  5.  *
  6.  * Written in 1995 by Colin Plumb.  I'm not going to embarass myself
  7.  * by claiming copyright on something this trivial.
  8.  */
  9. #include "bn.h"
  10. #include "bn16.h"
  11. void
  12. bnInit(void)
  13. {
  14. bnInit_16();
  15. }