summaryrefslogtreecommitdiff
path: root/asn1/spnego/spnego.cnf
AgeCommit message (Collapse)AuthorFilesLines
2014-10-13ASN1: Register PDU-dissectors as NEWStig Bjørlykke1-1/+1
Change-Id: I1a317b19d8076588c9305dae6287bb80cc14da64 Reviewed-on: https://code.wireshark.org/review/4494 Petri-Dish: Stig Bjørlykke <stig@bjorlykke.org> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net> Reviewed-by: Stig Bjørlykke <stig@bjorlykke.org> Tested-by: Stig Bjørlykke <stig@bjorlykke.org>
2014-06-19Revert "Update ASN.1 source files with the API changes done in g021e7af"Pascal Quantin1-2/+2
This reverts commit e308e7c4de81c2ff7159e444b865ac59de4faa2b. Change-Id: I079616d63f643f79f1bc03ef5fdf724f36df4071 Reviewed-on: https://code.wireshark.org/review/2435 Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
2014-06-18Update ASN.1 source files with the API changes done in g021e7afPascal Quantin1-2/+2
Change-Id: I52ecfccbce423206242e3cf99401a8c9e1655d88 Reviewed-on: https://code.wireshark.org/review/2385 Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
2014-05-29Improve the fix by removing code that miss dissects SPNEGO stuff ... as wellRichard Sharpe1-51/+0
as remove redundant stuff from the spnego.cnf file. Signed-off-by: Richard Sharpe <realrichardsharpe@gmail.com> Change-Id: I90a962a39dc4da0f13055c9b3893c26044f1fc97 Reviewed-on: https://code.wireshark.org/review/1809 Reviewed-by: Tomáš Kukosa <tomas.kukosa@unify.com> Reviewed-by: Michael Mann <mmann78@netscape.net>
2014-05-29Try to fix the problems with the SPNEGO negTokenInit differences in ↵Richard Sharpe1-34/+31
Microsoft implementations Change-Id: Ifbfca88469a6bc479072c921deba280e667c7087 Reviewed-on: https://code.wireshark.org/review/1804 Reviewed-by: Michael Mann <mmann78@netscape.net>
2014-03-15Remove unused const variables errors seen with recent Clang versionPascal Quantin1-1/+2
Fixes bug 9886 Change-Id: I8624ef1c5874aea5521d21c998510fc29c838936 Reviewed-on: https://code.wireshark.org/review/657 Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
2014-02-18Remove $Id$ from the ASN.1 dissectors and regenerate them.Jeff Morriss1-2/+0
Change-Id: Ie476c6f82f318188b41ed922b92c6fec119ea954 Reviewed-on: https://code.wireshark.org/review/244 Reviewed-by: Jeff Morriss <jeff.morriss.ws@gmail.com> Tested-by: Jeff Morriss <jeff.morriss.ws@gmail.com>
2013-03-04Use explicit casts.Anders Broman1-3/+3
svn path=/trunk/; revision=48045
2012-05-11Get rid of remaining Booleans-as-encoding-arguments inGuy Harris1-1/+1
proto_tree_add_item() calls. svn path=/trunk/; revision=42557
2010-07-01Initialize MechType_oid in the right place.Gerald Combs1-2/+0
svn path=/trunk/; revision=33396
2010-07-01Initialize more variables.Gerald Combs1-0/+2
svn path=/trunk/; revision=33392
2010-05-13Use find_or_create_conversation() in some ASN.1 dissectorsJeff Morriss1-25/+7
svn path=/trunk/; revision=32791
2010-01-28Fix gcc -Wshadow warning.Bill Meier1-4/+4
svn path=/trunk/; revision=31715
2009-10-07Switch to using tvb_new_subset_remaining() in .cnf files.Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=30386
2007-05-15actx in the rest of dissect_ber..()lAnders Broman1-1/+1
svn path=/trunk/; revision=21773
2007-05-13Second step in introducing asn context to BER dissectors just like in PER.Anders Broman1-23/+23
svn path=/trunk/; revision=21753
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
2005-11-14 - dissect_ber_object_identifier() returns value as tvbTomas Kukosa1-1/+1
- 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 Harris1-3/+0
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 Harris1-88/+179
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-15Replace the spnego dissector with an asn2eth generated one.Anders Broman1-0/+128
svn path=/trunk/; revision=15810