summaryrefslogtreecommitdiffstats
path: root/source/libsmb/smb_signing.c
Commit message (Collapse)AuthorAgeFilesLines
* Don't modify the incoming packet when checking the signiture.Andrew Bartlett2003-03-301-10/+26
| | | | Andrew Bartlett
* Removed unused var.Jeremy Allison2003-03-181-2/+0
| | | | Jeremy.
* We haven't implemented The Singing Contexts so far.Rafal Szczesniak2003-03-141-1/+1
| | | | | | | Who knows what .NET server brings, though ...? ;-) Rafal
* Further work on NTLMSSP-based SMB signing. Current status is that I cannnotAndrew Bartlett2003-03-101-30/+150
| | | | | | | | | | | | | | | | get Win2k to send a valid signiture in it's session setup reply - which it will give to win2k clients. So, I need to look at becoming 'more like MS', but for now I'll get this code into the tree. It's actually based on the TNG cli_pipe_ntlmssp.c, as it was slightly easier to understand than our own (but only the utility functions remain in any way intact...). This includes the mysical 'NTLM2' code - I have no idea if it actually works. (I couldn't get TNG to use it for its pipes either). Andrew Bartlett
* Try not to clobber the session request.Andrew Bartlett2003-03-091-3/+15
|
* Change the way we sign SMB packets, to a function pointer interface.Andrew Bartlett2003-03-091-0/+329
The intention is to allow for NTLMSSP and kerberos signing of packets, but for now it's just what I call 'simple' signing. (aka SMB signing per the SNIA spec) Andrew Bartlett