aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/spnego
AgeCommit message (Collapse)AuthorFilesLines
2007-01-09Move cryptography code to epan/crypt.Gerald Combs1-1/+1
svn path=/trunk/; revision=20359
2007-01-02Move epan/crypt-md5.[ch] to epan/crypt. RemoveGerald Combs1-35/+35
epan/crypt/airpdcap_md5.[ch]. Fix up whitespace. svn path=/trunk/; revision=20277
2006-12-13if there is a list of mechTypes in the negTokenInit then store the first oneRonnie Sahlberg1-16/+50
and associate it with the conversation properly. do the same for supportedMech in the negTokenTarg This will allow wireshark to decode the blob in negTokenTarg even when no supportedMech is provided. svn path=/trunk/; revision=20129
2006-10-29put every python script name into "" so the call won't fail on Win32 native ↵Ulf Lamping1-1/+1
python. The problem is the slash in e.g.: @$(PYTHON) ../../tools/make-dissector-reg.py is interpreted as an option instead of being part of the path. I didn't wanted to use backslashes as this might introduce new problems with cygwin's python port. svn path=/trunk/; revision=19730
2006-05-23Ethereal -> WiresharkTomas Kukosa1-3/+3
asn2eth -> asn2wrs svn path=/trunk/; revision=18214
2006-05-21- asn2eth renamed to asn2wrsTomas Kukosa2-5/+5
- remove obsolete -X option from makefiles - not generate enumerated map table for BER dissector will be regenerated later svn path=/trunk/; revision=18199
2006-05-21name changeRonnie Sahlberg2-4/+4
svn path=/trunk/; revision=18197
2006-04-25Add distclean and maintainerclean rules.Guy Harris1-0/+4
svn path=/trunk/; revision=17999
2006-03-30call OID subdissector for private extensiions, fix makefiles.Anders Broman1-2/+2
svn path=/trunk/; revision=17772
2006-02-23Add parsertab.pyc in clean targetAnders Broman1-1/+1
svn path=/trunk/; revision=17387
2005-12-25microsoft does not use a confounder for spnego when using DNS/TSIGRonnie Sahlberg1-4/+10
they use an additional confounder everywhere else (as it seems) but not for DNS/TSIG svn path=/trunk/; revision=16894
2005-11-14 - dissect_ber_object_identifier() returns value as tvbTomas Kukosa2-4/+4
- new dissect_ber_object_identifier_str() function - BER dissectors adapted and regenerated svn path=/trunk/; revision=16501
2005-09-21dissect_ber_octet_string() can return a null tvbuff pointer, if theGuy Harris1-12/+11
putative octet string isn't one; always check before using it to dissect, and don't call the dissector if the tvbuff is null. This should fix bug 472. svn path=/trunk/; revision=15946
2005-09-21Some compilers don't allow a static declaration of a function insideGuy Harris2-3/+9
another function, so move the declaration of dissect_spnego_PrincipalSeq() to the top of the file. svn path=/trunk/; revision=15938
2005-09-21An InnerContextToken comes with an OID for the mechanism, which is whatGuy Harris3-131/+225
we use to determine how to interpret the token; don't bother fetching the OID attached to the frame or conversation, as we're not using it. Indent code in the .cnf file to match the code generated by asn2eth. The mechListMIC in a NegTokenInit is sometimes a sequence containing a string; check the header of the mechListMIC and dissect it as such a sequence or as a regular item depending on whether it's a sequence or not. If we see a supportedMech in a NegTokenTarg, save next_level_value for that OID with the conversation. Dissect a responseToken in a NegTokenTarg, and a mechListMIC in a NegTokenTarg, appropriately. Get rid of "gssapi_dissector_handle()", and just use next_level_value->handle - it was never being called if next_level_value was null. When we're dissecting a KRB5 blob, just use get_ber_identifier() to get the header, so we don't report an ASN.1 error if there isn't a BER identifier there; dissect the identifier and length only if we know we have them. svn path=/trunk/; revision=15937
2005-09-19Don't dereference a null pointer. Fixes bug 460.Gerald Combs1-1/+1
svn path=/trunk/; revision=15874
2005-09-19In the SPNEGO dissector, don't call a subdissector if we don't have a TVB.Gerald Combs1-1/+4
Fixes bugs 448, 449, 451, 452, 454, 456, and 461. Add similar TVB checks to the BER dissector. svn path=/trunk/; revision=15869
2005-09-15Don't use u_char - not all platforms define it, and even those that doGuy Harris1-2/+2
might require other files to be included to get it. svn path=/trunk/; revision=15828
2005-09-15Add a Makefile.Guy Harris1-0/+17
svn path=/trunk/; revision=15827
2005-09-15Replace the spnego dissector with an asn2eth generated one.Anders Broman5-0/+1359
svn path=/trunk/; revision=15810