diff options
author | Stefan Metzmacher <metze@samba.org> | 2007-02-14 12:21:16 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:48:14 -0500 |
commit | 86c5fe1990361ef35ebf1d71226ee0a63af9e999 (patch) | |
tree | 7296b5774d20da4370bde499aa07a0e951270ab7 /source4 | |
parent | bd3d88c69ded13ac3d0a7b43861377b343563989 (diff) | |
download | samba-86c5fe1990361ef35ebf1d71226ee0a63af9e999.tar.gz samba-86c5fe1990361ef35ebf1d71226ee0a63af9e999.tar.bz2 samba-86c5fe1990361ef35ebf1d71226ee0a63af9e999.zip |
r21331: add comment about how the cleartext password is stored
metze
(This used to be commit 2b7d7487510898dffc900bfcec88ed57c709858c)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/librpc/idl/drsblobs.idl | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/source4/librpc/idl/drsblobs.idl b/source4/librpc/idl/drsblobs.idl index 9ee1b467f6..1847efacee 100644 --- a/source4/librpc/idl/drsblobs.idl +++ b/source4/librpc/idl/drsblobs.idl @@ -216,12 +216,19 @@ interface drsblobs { * and there's a 32 byte hex string. * w2k3 also has 'Primary:WDigest' * and there's a 64 byte hex string. + * ...but this 'Primary:CLEARTEXT' + * also there's a 104 byte hex string + * (instead of 3 * (16*2) = 96 ). * * 'Primary:Kerberos': * ... * * 'Primary:WDigest': * ... + * + * 'Primary:CLEARTEXT': + * data contains the cleartext password + * as UTF16 string encoded as HEX string */ [charset(DOS)] uint8 data[data_len]; } supplementalCredentialsPackage; |