README.txt
上传用户:lyxiangda
上传日期:2007-01-12
资源大小:3042k
文件大小:2k
源码类别:

CA认证

开发平台:

WINDOWS

  1. This is a very trivial program that loads and excercises a PKCS#11
  2. module, trying basic operations.  I used it as a basic check that
  3. my data-only modules for NSS worked, and I'm including it here as
  4. a first sample test program.
  5. This program uses GNU autoconf: run ./configure --help for info.
  6. In addition to the standard options, the configure script accepts
  7. the following:
  8.   --with-nspr[=path]      specify location of NSPR
  9.   --with-nss-dist[=path]  specify path to NSS dist directory
  10.   --with-nss-hdrs[=path]  or, specify path to installed NSS headers
  11.   --with-rsa-hdrs[=path]  if not using NSS, specify path to RSA headers
  12.   --disable-debug         default is enabled
  13. This program uses NSPR; you may specify the path to your NSPR 
  14. installation by using the "--with-nspr" option.  The specified
  15. directory should be the one containing "include" and "lib."
  16. If this option is not given, the default is the usual prefix
  17. directories; see ./configure --help for more info.
  18. This program requires either the pkcs11*.h files from RSA, or
  19. the NSS equivalents.  To specify their location, you must
  20. specify one of --with-nss-dist, --with-nss-hdrs, or --with-rsa-hdrs.
  21. If you have an NSS build tree, specify --with-nss-dist and provide
  22. the path to the mozilla/dist/*.OBJ directory.  (If you got this
  23. package by checking it out from mozilla, it should be about six
  24. directories up, once you've built NSS.)
  25. Alternatively, if you have an NSS installation (including "private"
  26. files, e.g. "ck.h") you may point directly to the directory containing
  27. the headers with --with-nss-hdrs.
  28. If you would rather use the RSA-provided header files, or your own
  29. versions of them, specify their location with --with-rsa-hdrs.
  30. The flag --disable-debug doesn't really do much here other than
  31. exclude the CVS_ID info from the binary.
  32. To run the program, specify the name of the .so (or your platform's
  33. equivalent) containing the module to be tested, e.g.: 
  34.   ./trivial ../../../../../../dist/*.OBJ/lib/libnssckbi.so
  35. If you're using NSS, and using our experimental "installer's
  36. arguments" fields in CK_C_INITIALIZE_ARGS, you can specify an
  37. "installer argument" with the -i flag:
  38.   ./trivial -i ~/.netscape/certs.db [...]/libnssckdb.so
  39. Share and enjoy.