random128.h
上传用户:s81996212
上传日期:2007-01-04
资源大小:722k
文件大小:1k
源码类别:

WEB邮件程序

开发平台:

C/C++

  1. #ifndef random128_h
  2. #define random128_h
  3. /*
  4. ** Copyright 1998 - 2000 Double Precision, Inc.
  5. ** See COPYING for distribution information.
  6. */
  7. #ifdef __cplusplus
  8. extern "C" {
  9. #endif
  10. static const char random128_h_rcsid[]="$Id: random128.h,v 1.3 2000/04/23 16:30:46 mrsam Exp $";
  11. /*
  12. random128 returns 128 random bits from the entropy.  random128
  13. returns a pointer to 32 hexadecimal uppercase nibbles, all total
  14. being 128 bits.
  15. */
  16. const char *random128();
  17. /*
  18. random128_alpha does the same thing, except that the return
  19. string contains uppercase alphabetic letters only (letters 'A'
  20. through 'P').
  21. */
  22. const char *random128_alpha();
  23. #ifdef __cplusplus
  24. }
  25. #endif
  26. #endif