Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
798 B

  1. //#pragma title( "Cipher.hpp" )
  2. /*
  3. Copyright (c) 1995-1998, Mission Critical Software, Inc. All rights reserved.
  4. ===============================================================================
  5. Module - Cipher.hpp
  6. System - Common
  7. Author - Tom Bernhardt
  8. Created - 19??-??-??
  9. Description -
  10. Updates -
  11. ===============================================================================
  12. */
  13. #ifndef MCSINC_Cipher_hpp
  14. #define MCSINC_Cipher_hpp
  15. void
  16. SimpleCipher(
  17. WCHAR * str // i/o-string to encrypt/decrypt
  18. );
  19. void
  20. SimpleCipher(
  21. char unsigned * str ,// i/o-string to encrypt/decrypt
  22. int len // in -length of string
  23. );
  24. #endif // MCSINC_Cipher_hpp
  25. // Cipher.hpp - end of file