From b5a5236f207867d52acb8573d69c92a7691b2d3f Mon Sep 17 00:00:00 2001 From: Matthew Chapman Date: Fri, 19 Mar 1999 15:09:25 +0000 Subject: Implemented encryption algorithm used for a number of RPC buffers. (actually, decryption only currently because I need to get some sleep). Basically another Microsoft twist on DES; the "master key" is the user's NT hash MD4'd and subsets of this are chosen as the 56-bit DES keys. (This used to be commit f09388fa6f41a13ca035b5b2ff40be804608f619) --- source3/include/rpc_lsa.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/include/rpc_lsa.h') diff --git a/source3/include/rpc_lsa.h b/source3/include/rpc_lsa.h index 6129c3bf01..1bd18bc7e8 100644 --- a/source3/include/rpc_lsa.h +++ b/source3/include/rpc_lsa.h @@ -176,7 +176,7 @@ typedef struct lsa_secret_value_info { uint32 ptr_secret; STRHDR2 hdr_secret; - STRING2 secret; + STRING2 enc_secret; /* encrypted, see nt_encrypt_string2 */ } LSA_SECRET_VALUE; -- cgit