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.

34 lines
453 B

  1. /*++
  2. Copyright (c) 1994 Microsoft Corporation
  3. Module Name:
  4. encrypt.h
  5. Abstract:
  6. Contains API to encrypt password.
  7. Author:
  8. Yi-Hsin Sung (yihsins) 30-Aug-1994
  9. Revision History:
  10. --*/
  11. #ifndef _ENCRYPT_H_
  12. #define _ENCRYPT_H_
  13. VOID
  14. EncryptChangePassword(
  15. IN PUCHAR pOldPassword,
  16. IN PUCHAR pNewPassword,
  17. IN ULONG ObjectId,
  18. IN PUCHAR pKey,
  19. OUT PUCHAR pValidationKey,
  20. OUT PUCHAR pEncryptNewPassword
  21. );
  22. #endif