2021-11-09  Simon Josefsson  <simon@josefsson.org>

	version 4.18.0
	* NEWS: Record release date.

	maint: Bump shared library version.  Prepare NEWS file for release.

2021-11-09  Simon Josefsson  <simon@josefsson.org>

	Merge branch 'tmp-indent' into 'master'
	Maintainer fixes including code indent.

	See merge request gnutls/libtasn1!87

2021-11-09  Simon Josefsson  <simon@josefsson.org>

	maint: Run syntax-check in CICD.

	maint: Sync gdoc with libidn2.

	maint: Fix syntax-check flaws.

	maint: Indent code.

	maint: Update .gitignore.

	maint: Regenerate README-release diff.

2021-11-09  Simon Josefsson  <simon@josefsson.org>

	Merge branch 'tmp-doc-fixes' into 'master'
	Doc fixes.  Version handling fixes.

	See merge request gnutls/libtasn1!86

2021-11-09  Simon Josefsson  <simon@josefsson.org>

	doc: Fix deps.  Generate --help from tools.

	maint: Fix generating version number.

	doc: Don't dist html/ps/pdf.  Drop old css.  Fix man page versions.  Sync gdoc.

2021-11-09  Simon Josefsson  <simon@josefsson.org>

	Merge branch 'tmp-src-gnulib' into 'master'
	Update gnulib and use it in src/.

	Closes #37

	See merge request gnutls/libtasn1!85

2021-11-09  Simon Josefsson  <simon@josefsson.org>

	Fix potential NULL-dereferencing (compiler warning).

	maint: Use gnulib modules in src/ tools. Closes: #37.
	Partially reverts 9b6c6519.

2021-11-09  Simon Josefsson  <simon@josefsson.org>

	Merge branch 'tmp-buildfixes' into 'master'
	Maintainer fixes

	See merge request gnutls/libtasn1!84

2021-11-09  Simon Josefsson  <simon@josefsson.org>

	cicd: Make it build.
	Use versioned images (because package names are release dependent).
	Don't fail on abidiff v2.0.
	Replace failing "x86" cross build with new "armcross".
	Use faster git submodule approach.

	maint: Update .gitignore.

	doc: Suggest running ./configure.

2021-11-09  Simon Josefsson  <simon@josefsson.org>

	Merge branch 'tmp-gtkdoc-fixes' into 'master'
	doc: Improve GTK-DOC manual.  Closes: #35.

	Closes #35

	See merge request gnutls/libtasn1!83

2021-07-22  Simon Josefsson  <simon@josefsson.org>

	doc: Improve GTK-DOC manual.  Closes: #35.

2021-05-25  Simon Josefsson  <simon@josefsson.org>

	Merge branch 'tmp-gnulib-update' into 'master'
	Update gnulib.

	See merge request gnutls/libtasn1!82

2021-05-25  Simon Josefsson  <simon@josefsson.org>

	Update gnulib.

2021-05-16  Daiki Ueno  <ueno@gnu.org>

	Merge branch 'kk/rename-files' into 'master'
	Rename test files. Avoid using ':', which is illegal on Windows.

	See merge request gnutls/libtasn1!81

2021-05-14  Konstantin Kouptsov  <kkouptsov@s141.home>

	Rename test files. Avoid using ':', which is illegal on Windows.

2021-05-13  Simon Josefsson  <simon@josefsson.org>

	maint: post-release administrivia
	* NEWS: Add header line for next release.
	* .prev-version: Record previous version.
	* cfg.mk (old_NEWS_hash): Auto-update.

	version 4.17.0
	* NEWS: Record release date.

	Modernize versioning and release infrastructure.

	Add NEWS item for last commit.

2021-05-12  Daiki Ueno  <ueno@gnu.org>

	Merge branch 'covscan_fixes' into 'master'
	Fix bugs unvelieled by Static Analysis

	See merge request gnutls/libtasn1!80

2021-05-11  Simo Sorce  <simo@redhat.com>

	Fix potential buffer overflow via fscanf
	Scanner Output
	--------------
	Error: DC.STREAM_BUFFER (CWE-120): [#def4]
	libtasn1-4.16.0/src/asn1Coding.c:75: dont_call: "fscanf" assumes an arbitrarily long string, so callers must use correct precision specifiers or never use "fscanf".
	libtasn1-4.16.0/src/asn1Coding.c:75: remediation: Use correct precision specifiers or implement your own parsing.
	 #   73|     int ret;
	 #   74|
	 #   75|->   ret = fscanf (file, "%s", varName);
	 #   76|     if (ret == EOF)
	 #   77|       return ASSIGNMENT_EOF;

	Error: DC.STREAM_BUFFER (CWE-120): [#def5]
	libtasn1-4.16.0/src/asn1Coding.c:81: dont_call: "fscanf" assumes an arbitrarily long string, so callers must use correct precision specifiers or never use "fscanf".
	libtasn1-4.16.0/src/asn1Coding.c:81: remediation: Use correct precision specifiers or implement your own parsing.
	 #   79|       varName[0] = 0;
	 #   80|
	 #   81|->   ret = fscanf (file, "%s", value);
	 #   82|     if (ret == EOF)
	 #   83|       return ASSIGNMENT_ERROR;

2021-05-11  Simo Sorce  <simo@redhat.com>

	Fix String overflow warning
	Scanner Output
	--------------
	rror: COMPILER_WARNING (CWE-758): [#def2]
	libtasn1-4.16.0/lib/element.c: scope_hint: In function '_asn1_append_sequence_set'
	libtasn1-4.16.0/lib/element.c:186:7: warning[-Wstringop-overflow=]: '_asn1_ltostr' accessing 22 bytes in a region of size 21
	 #  186 |       _asn1_ltostr (n, temp + 1);
	 #      |       ^~~~~~~~~~~~~~~~~~~~~~~~~~
	libtasn1-4.16.0/lib/element.c:186:7: note: referencing argument 2 of type 'char *'
	libtasn1-4.16.0/lib/element.c:30: included_from: Included from here.
	libtasn1-4.16.0/lib/parser_aux.h:70:7: note: in a call to function '_asn1_ltostr'
	 #   70 | char *_asn1_ltostr (int64_t v, char str[LTOSTR_MAX_SIZE]);
	 #      |       ^~~~~~~~~~~~
	 #  184|         n++;
	 #  185|         temp[0] = '?';
	 #  186|->       _asn1_ltostr (n, temp + 1);
	 #  187|       }
	 #  188|     _asn1_set_name (p2, temp);

	Fix resource leak (node)
	Scanner Output
	--------------
	Error: RESOURCE_LEAK (CWE-772): [#def1]
	libtasn1-4.16.0/lib/coding.c:1099: alloc_fn: Storage is returned from allocation function "_asn1_copy_structure3".
	libtasn1-4.16.0/lib/coding.c:1099: var_assign: Assigning: "node" = storage returned from "_asn1_copy_structure3(node)".
	libtasn1-4.16.0/lib/coding.c:1106: leaked_storage: Variable "node" going out of scope leaks the storage it points to.
	 # 1104|
	 # 1105|     if (der == NULL && max_len > 0)
	 # 1106|->     return ASN1_VALUE_NOT_VALID;
	 # 1107|
	 # 1108|     counter = 0;

2021-05-08  Simon Josefsson  <simon@josefsson.org>

	Merge branch 'tmp-more-cicd' into 'master'
	Support both old and new bison. Closes: #33.

	Closes #33

	See merge request gnutls/libtasn1!79

2021-05-08  Simon Josefsson  <simon@josefsson.org>

	Support both old and new bison. Closes: #33.
	Update build dependencies.
	Improve cicd.

2021-05-07  Simon Josefsson  <simon@josefsson.org>

	Bump copyright years.

2021-05-07  Simon Josefsson  <simon@josefsson.org>

	Merge branch 'tmp-update-gnulib' into 'master'
	Update gnulib files.

	See merge request gnutls/libtasn1!78

2021-05-07  Simon Josefsson  <simon@josefsson.org>

	Check that malloc returned non-NULL.

	Remove or update updated gnulib files.

	Gnulib requires autoconf 2.64 now.

	Update gnulib files.

2021-05-03  Andreas Metzler  <gitlab@bebt.de>

	Merge branch 'tmp-fix-readme' into 'master'
	Fix homepage URL.  Remove text duplicated from LICENSE.

	See merge request gnutls/libtasn1!77

2021-05-03  Simon Josefsson  <simon@josefsson.org>

	Fix homepage URL.  Remove text duplicated from LICENSE.

2021-03-29  Daiki Ueno  <ueno@gnu.org>

	Merge branch 'ihsinme-master-patch-00221' into 'master'
	fix invalid unsigned arithmetic.

	See merge request gnutls/libtasn1!75

2021-03-22  Daiki Ueno  <ueno@gnu.org>

	Merge branch 'wip/dueno/bison-bootstrap' into 'master'
	Revert "bootstrap.conf: require bison 3.6 or later"

	See merge request gnutls/libtasn1!76

2021-03-22  Daiki Ueno  <ueno@gnu.org>

	Revert "bootstrap.conf: require bison 3.6 or later"
	This reverts commit b6de8e01dec78ac0a43bccae49d1ecda64ad9b98.  The
	condition was too rigid on oss-fuzz.  This was introduced for the
	default string change ("$eof" -> "end of file"), but ideally we should
	have a way to produce the same error message for either version of
	bison.

2021-03-01  ihsinme  <ihsinme@gmail.com>

	I believe your checks are not correct. in my opinion they are equivalent to checks !=. I suggest a simple fix. only fix!

2021-02-25  Daiki Ueno  <ueno@gnu.org>

	Merge branch 'tmp-restore-size' into 'master'
	SIZE: restore handling of SIZE nodes

	See merge request gnutls/libtasn1!68

2021-02-25  Daiki Ueno  <ueno@gnu.org>

	Merge branch 'wip/dueno/ci-fixes' into 'master'
	Merge !71 along with CI fixes

	See merge request gnutls/libtasn1!74

2021-02-25  Stefan Weil  <sw@weilnetz.de>

	Remove NULL checks which are no longer needed

	Fix handling of code which uses NULL pointers + offset
	Apple clang optimizes illegal pointers like (der + counter) with
	der == NULL which makes several tests fail, so better avoid that.

2021-02-25  Daiki Ueno  <ueno@gnu.org>

	doc: update copyright year

	bootstrap.conf: require bison 3.6 or later

	tests: adjust Test_parser error message to Bison 3.6+
	Bison 3.6 refers YYEOF as "end of file" instead of "$end".

	.gitlab-ci.yml: use Fedora 33 image

2020-09-10  Daiki Ueno  <ueno@gnu.org>

	Merge branch 'tmp-gnulib' into 'master'
	src: link against libgnu.la for "c-ctype.h" symbols

	Closes #28

	See merge request gnutls/libtasn1!69

2020-09-05  Daiki Ueno  <ueno@gnu.org>

	lib: include "c-ctype.h" in a documented way
	https://git.savannah.gnu.org/cgit/gnulib.git/tree/modules/c-ctype#n18

	src: link against libgnu.la for "c-ctype.h" symbols
	libtasn1.la now uses functions from "c-ctype.h", which needs the
	tools to be linked with libgnu.la.

2020-05-25  Dmitry Baryshkov  <dbaryshkov@gmail.com>

	SIZE: restore handling of SIZE nodes
	Gcr library uses asn1Parser to generate parsing tables. It has it's own
	parser which handles SIZE nodes correctly. Several tests inside Gcr fail
	if ASN.1 tables were rebuilt with SIZE nodes. Restore compatibility of
	Gcr library with fresh libtasn1 by restoring support for SIZE nodes.

2020-05-13  Tim Rühsen  <tim.ruehsen@gmx.de>

	Merge branch 'tmp-length-fuzz' into 'master'
	fuzz: add fuzzers for asn1_get_length_b/der

	See merge request gnutls/libtasn1!65

2020-05-13  Dmitry Baryshkov  <dbaryshkov@gmail.com>

	run-clang.sh: work with out-of-tree builds
	run-clang.sh contains rudimentary (incomplete) support for out-of-tree
	builds. Fix it to work correctly.

	fuzz: add fuzzers for asn1_get_length_b/der
	Add two simple fuzzers for asn1_get_length_b/der.

2020-05-11  Tim Rühsen  <tim.ruehsen@gmx.de>

	Merge branch 'tmp-tests' into 'master'
	Update testing routines

	See merge request gnutls/libtasn1!64

2020-05-08  Dmitry Baryshkov  <dbaryshkov@gmail.com>

	Merge branch 'tmp-fix-16159' into 'master'
	parser: fix parser2tree memory leak (and parsing error)

	See merge request gnutls/libtasn1!67

2020-05-07  Tim Rühsen  <tim.ruehsen@gmx.de>

	Merge branch 'tmp-fix-docs' into 'master'
	Misc fixes for documentation

	Closes #20

	See merge request gnutls/libtasn1!66

2020-05-07  Dmitry Baryshkov  <dbaryshkov@gmail.com>

	parser: fix parser2tree memory leak (and parsing error)
	Fix oss-fuzz 16159, leak in parser2tree. The leak was caused by parser
	code ignoring all defined types if first one was a known type.

2020-05-06  Dmitry Baryshkov  <dbaryshkov@gmail.com>

	libtasn1.h.in: merge asn1_static_node definition for gtk-doc
	Gtk-doc fails to find asn1_static_node fields documentation. Merge
	struct asn1_static_node_st with typedef asn1_static_node to let Gtk-doc
	find the documentation.

	libtasn1.h.in: update section documentation
	Follow new gtk-doc section documentation format.

2020-05-06  Dmitry Baryshkov  <dbaryshkov@gmail.com>

	doc/reference: hide deprecated symbols
	Put ASN1_DISABLE_DEPRECATED guards around deprecated symbols to stop
	gtkdoc-scan from complaining.

	Fixes #20

2020-05-06  Dmitry Baryshkov  <dbaryshkov@gmail.com>

	doc/reference: skip gl headers
	Do not parse gnulib headers.

	doc/reference: work in out-of-tree builds
	Point gtkdoc-scan to top_builddir to also scan libtasn1.h file generated
	inside $(top_builddir)/lib/includes.

	doc/Makefile.am: work correctly in out-of-tree builds
	Reference $(srcdir)/Makefile.am rather than just Makefile.am to make it
	work in out-of-tree builds.

2020-05-05  Dmitry Baryshkov  <dbaryshkov@gmail.com>

	fuzz: support running single test at a time
	Support testing single input file at a time.

	tests/crlf: enable calling asn1Decoding using VALGRIND

	tests: remove --leak-check=no from scripts
	Reenable valgrind's leaks checking in scripts

	tests: run valgrind on a test, not on a shell
	Rename scripts and use SH_LOG_COMPILER to call VALGRIND inside a script
	rather than valgrinding the whole script (including bash and the rest of
	utils).

2020-03-20  Tim Rühsen  <tim.ruehsen@gmx.de>

	Merge branch 'tmp-deprecation' into 'master'
	Tmp deprecation

	See merge request gnutls/libtasn1!58

2020-03-20  Tim Rühsen  <tim.ruehsen@gmx.de>

	Replace deprecated macros in examples and fuzzers

	Print deprecation warning for deprecated macros
	Use _Pragma to print warning for using deprecated macros.
	This is enabled for gcc >= 3.1.

2020-02-01  Nikos Mavrogiannopoulos  <nmav@gnutls.org>

	released 4.16.0

	asn1_object_id_der: reformatted for gdoc detection

2020-01-19  Nikos Mavrogiannopoulos  <nmav@gnutls.org>

	bumped version

	NEWS: clarifications

2020-01-19  Nikos Mavrogiannopoulos  <nmav@gnutls.org>

	Merge branch 'tmp-oid-fix' into 'master'
	asn1_get_object_id_der: enhance the range of decoded OIDs

	Closes #25

	See merge request gnutls/libtasn1!55

2020-01-11  Nikos Mavrogiannopoulos  <nmav@gnutls.org>

	Merge branch 'tmp-ber-constructed-octet-string' into 'master'
	asn1_decode_simple_ber: added support for constructed definite octet string

	See merge request gnutls/libtasn1!56

2020-01-11  Nikos Mavrogiannopoulos  <nmav@redhat.com>

	updated auto-generated files

	asn1_object_id_der: introduced
	This introduces a function to encode from a textual object
	identifier to a DER encoding. This complements asn1_get_object_id_der().

2020-01-11  Nikos Mavrogiannopoulos  <nmav@gnutls.org>

	_asn1_object_id_der: expanded to handle all OIDs that can be decoded
	In addition to making a more precise OID encoding, we add
	a unit test.

2020-01-11  Nikos Mavrogiannopoulos  <nmav@redhat.com>

	asn1_get_object_id_der: enhance the range of decoded OIDs
	The function would only successfully decode OIDs that started
	with a single octet. This fixes that limitation.

	Resolves: #25

2020-01-11  Nikos Mavrogiannopoulos  <nmav@gnutls.org>

	asn1_decode_simple_ber: added support for constructed definite octet string
	This allows to decode the whole set of BER encodings for
	OCTET STRINGs.

	_asn1_decode_simple_ber: allow empty fields
	Allow empty subcomponents of BER OCTET STRINGS. These
	are not prohibited by BER.

	asn1_der_decoding2: force the right tag on DER
	When decoding an OCTET STRING ensure that the right
	tag is present when strict DER is specified.

	asn1_der_decoding2: fix flag checking

	lib: append: cleanup
	This simplifies the use of the append() function and
	fixes the error code on failure.

2020-01-07  Nikos Mavrogiannopoulos  <nmav@gnutls.org>

	.gitlab-ci.yml: save artifacts on failure

2020-01-07  Nikos Mavrogiannopoulos  <nmav@redhat.com>

	fuzz: added fuzzers for simple decoding functions

2020-01-02  Nikos Mavrogiannopoulos  <nmav@gnutls.org>

	Merge branch 'tmp-update-to-f31' into 'master'
	.gitlab-ci.yml: use fedora 31

	See merge request gnutls/libtasn1!54

2020-01-02  Nikos Mavrogiannopoulos  <n.mavrogiannopoulos@gmail.com>

	Updated copyright of manual to 2020

	.gitlab-ci.yml: use fedora 31

2019-12-23  Nikos Mavrogiannopoulos  <nmav@gnutls.org>

	README.md: updated build badge

2019-12-23  Nikos Mavrogiannopoulos  <nmav@gnutls.org>

	Merge branch 'tmp-c-ctype' into 'master'
	isdigit: replace with gnulib's c-ctype

	See merge request gnutls/libtasn1!53

2019-12-23  Nikos Mavrogiannopoulos  <nmav@gnutls.org>

	isdigit: replace with gnulib's c-ctype

2019-11-21  Tim Rühsen  <tim.ruehsen@gmx.de>

	Merge branch 'tmp-correct-installed-files' into 'master'
	fuzz: do not install generated fuzzers and tools

	See merge request gnutls/libtasn1!52

2019-11-21  Nikos Mavrogiannopoulos  <nmav@gnutls.org>

	fuzz: do not install generated fuzzers and tools

	released 4.15.0

2019-10-31  Nikos Mavrogiannopoulos  <nmav@gnutls.org>

	Merge branch 'tmp-use-after-free' into 'master'
	_asn1_expand_object_id: added safety against use after free

	See merge request gnutls/libtasn1!51

2019-10-31  Nikos Mavrogiannopoulos  <nmav@redhat.com>

	_asn1_expand_object_id: protect from unbounded recursion
	That introduces a large maximum limit on the number of constants that can
	be forming an object identifier. That protects from a large allocations of
	memory in specially crafted .asn files.

	Resolves:
	  https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=17750

2019-10-31  Nikos Mavrogiannopoulos  <nmav@redhat.com>

	_asn1_expand_object_id: added safety against use after free
	Resolves:
	  https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=16161

2019-10-25  Nikos Mavrogiannopoulos  <nmav@gnutls.org>

	Merge branch 'tmp-git2cl' into 'master'
	ChangeLog: do not depend on git2cl [ci skip]

	See merge request gnutls/libtasn1!50

2019-10-25  Nikos Mavrogiannopoulos  <nmav@gnutls.org>

	ChangeLog: do not depend on git2cl
	This package is not universally available and its value is not
	that significant to depend on.

2019-09-09  Tim Rühsen  <tim.ruehsen@gmx.de>

	Merge branch 'gtkdoc' into 'master'
	doc/reference: don't add empty object hierarchy chapter

	See merge request gnutls/libtasn1!49

2019-09-09  Ross Burton  <ross.burton@intel.com>

	doc/reference: don't add empty object hierarchy chapter
	The object hierarchy section is empty because there are no GObjects in the
	libtasn1 API.  With gtk-doc 1.30 onwards if there are no objects then the object
	hierarchy file won't exist, resulting in a failure when building the
	documentation:

	| ../libtasn1-docs.xml:39: element include: XInclude error : could not load ../xml/tree_index.sgml, and no fallback was found

2019-08-09  Tim Rühsen  <tim.ruehsen@gmx.de>

	Merge branch 'tmp-gnutls-fuzzer' into 'master'
	Add another fuzzer with code from gnutls

	See merge request gnutls/libtasn1!48

2019-08-09  Tim Rühsen  <tim.ruehsen@gmx.de>

	Fix harmless integer overflows
	This triggered several undefined behaviors when
	CONST_DOWN is a signed integer:

	unsigned type;
	type & (~CONST_DOWN)

2019-08-09  Tim Rühsen  <tim.ruehsen@gmx.de>

	Add first fuzz corpora for libtasn1_gnutls_der_fuzzer

	Add new fuzzer libtasn1_pkix_der_fuzzer.c
	This fuzzer is testing arbitrary DER input data with GnuTLS's ASN.1
	definition (lib/gnutls.asn). Any issues found here likely have a
	real world impact on every software using libgnutls.

2019-08-09  Tim Rühsen  <tim.ruehsen@gmx.de>

	Merge branch 'tmp-fix-ossfuzz-16249' into 'master'
	Fix OSS-Fuzz issue 16249

	See merge request gnutls/libtasn1!47

2019-08-09  Tim Rühsen  <tim.ruehsen@gmx.de>

	Fix OSS-Fuzz issue 16249
	This removes an exit() during fuzzing which prevents fuzz progress.

2019-08-08  Tim Rühsen  <tim.ruehsen@gmx.de>

	Merge branch 'tmp-pkix-der-fuzzer' into 'master'
	Add pkix der fuzzer

	See merge request gnutls/libtasn1!46

2019-08-08  Tim Rühsen  <tim.ruehsen@gmx.de>

	Add first fuzz corpora for libtasn1_pkix_der_fuzzer

	Add new fuzzer libtasn1_pkix_der_fuzzer.c
	This fuzzer is testing arbitrary DER input data with GnuTLS's ASN.1
	definition (lib/pkix.asn). So, any issues found here likely have a real world
	impact on every software using libgnutls.

2019-08-02  Tim Rühsen  <tim.ruehsen@gmx.de>

	Merge branch 'tmp-fix-ossfuzz-16158' into 'master'
	Fix null dereference in _asn1_expand_object_id()

	See merge request gnutls/libtasn1!42

2019-08-02  Tim Rühsen  <tim.ruehsen@gmx.de>

	Fix null dereference in _asn1_expand_object_id()
	Fixes OSS-Fuzz issue #16158

2019-08-02  Tim Rühsen  <tim.ruehsen@gmx.de>

	Merge branch 'tmp-issue-trackers' into 'master'
	README.md: added links to issue trackers [ci skip]

	See merge request gnutls/libtasn1!41

2019-08-02  Nikos Mavrogiannopoulos  <nmav@gnutls.org>

	README.md: added links to issue trackers [ci skip]

2019-08-01  Tim Rühsen  <tim.ruehsen@gmx.de>

	Merge branch 'tmp-fuzzing' into 'master'
	Add initial fuzzing implementation

	See merge request gnutls/libtasn1!38

2019-08-01  Tim Rühsen  <tim.ruehsen@gmx.de>

	Add fuzz corpora for libtasn1_array2tree_fuzzer

	Add fuzz corpora for libtasn1_parser2tree_fuzzer

	Fix memleaks in asn1_array2tree()
	Introduce _asn1_delete_structure() that keeps the node list
	in sync when deleting a tree structure.

	Suppress warnings when fuzzing

2019-08-01  Tim Rühsen  <tim.ruehsen@gmx.de>

	Add initial fuzzing
	The initial fuzzing includes two basic fuzzers:
	- libtasn1_array2tree_fuzzer.c
	  Test asn1_array2tree()'s robustness
	- libtasn1_parser2tree_fuzzer.c
	  Test asn1_parser2tree()'s robustness

	The make target 'oss-fuzz' is included for building the fuzzers
	on the OSS-Fuzz platform for continuous fuzzing.

2019-07-30  Tim Rühsen  <tim.ruehsen@gmx.de>

	Merge branch 'tmp-fix-path' into 'master'
	docs: Fix path for ASN1.c

	See merge request gnutls/libtasn1!40

2019-07-30  Tim Rühsen  <tim.ruehsen@gmx.de>

	docs: Fix path for ASN1.c

2019-07-29  Tim Rühsen  <tim.ruehsen@gmx.de>

	Merge branch 'tmp-20190727-delete-cyclo-subdir' into 'master'
	doc: removed cyclo subdir

	See merge request gnutls/libtasn1!39

2019-07-29  Andreas Metzler  <ametzler@bebt.de>

	doc: removed cyclo subdir
	The calculation of cyclomatic complexity was not kept up to date (or
	functional in the tarball).

2019-07-28  Nikos Mavrogiannopoulos  <nmav@gnutls.org>

	Merge branch 'tmp-minor-fixes' into 'master'
	Minor fixes based on LGTM.com input

	See merge request gnutls/libtasn1!37

2019-07-28  Nikos Mavrogiannopoulos  <nmav@gnutls.org>

	Merge branch 'tmp-fix-memleak-b' into 'master'
	ASN1.y: improved detection of built-in types

	Closes #16

	See merge request gnutls/libtasn1!36

2019-07-28  Nikos Mavrogiannopoulos  <nmav@gnutls.org>

	_asn1_copy_structure3: removed FIXME comment
	It was hinting the possibility of a leak. However without any
	more information, any reproducer, or hint the information was not very
	useful and possibly misleading. Removing.

	headers: added guards

2019-07-28  Nikos Mavrogiannopoulos  <nmav@gnutls.org>

	ASN1.y: improved detection of built-in types
	The built-in types are now detected via the yacc syntax and not
	in the _asn1_yyerror() routine. This addresses a memory leak on
	invalid syntax, and also reduces the generated tree by eliminating
	unnecessary types.

	Resolves: #16

2019-07-28  Nikos Mavrogiannopoulos  <nmav@gnutls.org>

	Merge branch 'tmp-no-yacc-warnings' into 'master'
	ASN1.y: move old definitions to new; remove warnings

	See merge request gnutls/libtasn1!35

2019-07-27  Nikos Mavrogiannopoulos  <nmav@gnutls.org>

	ASN1.y: move old definitions to new; remove warnings
	Autotools pass by the default the posix yacc (-y) flag to bison,
	which causes lots of warnings to be printed. As libtasn1 was never
	posix-yacc compliant there is no reason for these warnings to be
	printed.

2019-07-27  Tim Rühsen  <tim.ruehsen@gmx.de>

	Merge branch 'tmp-20190727-typo-whith' into 'master'
	typo fix: whith -> with

	See merge request gnutls/libtasn1!34

2019-07-27  Andreas Metzler  <ametzler@bebt.de>

	typo fix: whith -> with

2019-07-26  Tim Rühsen  <tim.ruehsen@gmx.de>

	Add .lgtm.yml for LGTM integration [ci skip]

2019-07-25  Tim Rühsen  <tim.ruehsen@gmx.de>

	Cleanup asn1_parser2tree()

2019-07-24  Tim Rühsen  <tim.ruehsen@gmx.de>

	Merge branch 'tmp-fix-memleak+ubsan' into 'master'
	Tmp fix memleak+ubsan

	See merge request gnutls/libtasn1!33

2019-07-24  Tim Rühsen  <tim.ruehsen@gmx.de>

	Fix memleaks in asn1_parser2tree(), found by fuzzing

	Fix two (harmless) UBSAN messages, found by fuzzing

2019-07-24  Tim Rühsen  <tim.ruehsen@gmx.de>

	Merge branch 'tmp-simplify-hash' into 'master'
	Simplified hash function in lib/parser_aux.c

	See merge request gnutls/libtasn1!32

2019-07-24  Tim Rühsen  <tim.ruehsen@gmx.de>

	Simplified hash function in lib/parser_aux.c

2019-07-24  Tim Rühsen  <tim.ruehsen@gmx.de>

	Merge branch 'tmp-am-ldflags' into 'master'
	Fix LDFLAGS to AM_LDFLAGS in src/Makefile.am

	Closes #15

	See merge request gnutls/libtasn1!31

2019-07-23  Tim Rühsen  <tim.ruehsen@gmx.de>

	Merge branch 'tmp-avoid-eol-brackets' into 'master'
	Tmp avoid eol brackets

	See merge request gnutls/libtasn1!30

2019-07-23  Tim Rühsen  <tim.ruehsen@gmx.de>

	Fix LDFLAGS to AM_LDFLAGS in src/Makefile.am

	Add sc_prohibit_eol_brackets syntax-check rule

	Prepare code for sc_prohibit_eol_brackets

2019-07-23  Tim Rühsen  <tim.ruehsen@gmx.de>

	Merge branch 'tmp-memleak-a' into 'master'
	Fix memleaks in asn1_array2tree()

	Closes #14

	See merge request gnutls/libtasn1!29

2019-07-23  Tim Rühsen  <tim.ruehsen@gmx.de>

	Add memleak reproducer in tests/reproducers.c

	Fix two memleaks in asn1_array2tree()

2019-07-23  Tim Rühsen  <tim.ruehsen@gmx.de>

	Merge branch 'tmp-warnings' into 'master'
	Fix warnings and add a Werror build

	See merge request gnutls/libtasn1!28

2019-07-23  Nikos Mavrogiannopoulos  <nmav@redhat.com>

	configure: do not suggest pure keyword
	It is suggested for several functions which handle nodes
	but it is not clear to me that this is a correct suggestion.
	A tree may change by accessing another pointer as well.

	marked strerror and check_version functions as pure

	.gitlab-ci.yml: introduce a run with -Werror to prevent new warnings

	asn1Decoding.c: eliminated warning

	configure: remove warning flags which are hard to eliminate

	fix old-style function definition

2019-07-22  Tim Rühsen  <tim.ruehsen@gmx.de>

	Merge branch 'tmp-amended-hash' into 'master'
	Use amended version of gnulib's hash_pjw_bare()

	Closes #13

	See merge request gnutls/libtasn1!27

2019-07-22  Tim Rühsen  <tim.ruehsen@gmx.de>

	Use amended version of gnulib's hash_pjw_bare()
	Amended hash_pjw_bare() to return 'unsigned int' instead of 'size_t'.
	Renamed the hash function to _asn1_hash().
	Added a suppression for clang's UBSAN, needed for fuzzing.

2019-07-22  Tim Rühsen  <tim.ruehsen@gmx.de>

	Merge branch 'tmp-parsing-fixes' into 'master'
	Fixes and cleanups in the yacc parser

	See merge request gnutls/libtasn1!24

2019-07-21  Nikos Mavrogiannopoulos  <nmav@gnutls.org>

	.gitlab-ci.yml: disable valgrind runs by default; added special CI run

	SIZE: do not store values; they were unused
	Additionally some of these values were incorrectly added as
	hanging (non-connected) nodes, which caused memory leaks.

	INTEGER: ignore (0..MAX) values; they were not used
	Additionally some of these values were incorrectly added as
	hanging (non-connected) nodes, which caused memory leaks.

	_asn1_expand_object_id: fix memory leak on error

2019-07-21  Nikos Mavrogiannopoulos  <nmav@redhat.com>

	ASN1.y: account for SIZE in BIT STRING
	This addresses a memory leak.

2019-07-21  Nikos Mavrogiannopoulos  <nmav@gnutls.org>

	tests: fix run under valgrind

2019-07-21  Nikos Mavrogiannopoulos  <nmav@redhat.com>

	asn1_parser2tree, ans1_parser2array: simplified

2019-07-21  Tim Rühsen  <tim.ruehsen@gmx.de>

	Merge branch 'tmp-fix-uint-overflow' into 'master'
	Fix uint overflow using explicit casts

	Closes #11

	See merge request gnutls/libtasn1!26

2019-07-21  Tim Rühsen  <tim.ruehsen@gmx.de>

	Merge branch 'tmp-gcc-manywarnings' into 'master'
	Add manywarnings module

	See merge request gnutls/libtasn1!25

2019-07-21  Tim Rühsen  <tim.ruehsen@gmx.de>

	Fix uint overflow using explicit casts

	Add manywarnings module
	--disable-gcc-manywarning was offered by ./configure but
	was non-functional.

2019-07-21  Nikos Mavrogiannopoulos  <nmav@gnutls.org>

	cfg.mk: set release type [ci skip]

	cfg.mk: removed legacy rules

	released 4.14

2019-07-19  Tim Rühsen  <tim.ruehsen@gmx.de>

	Fix endless loop in _asn1_check_identifier()

2019-07-19  Nikos Mavrogiannopoulos  <nmav@gnutls.org>

	tests: removed VALGRIND variable from environment

2019-07-19  Tim Rühsen  <tim.ruehsen@gmx.de>

	Add version number defines for libtasn1.h

2019-07-19  Nikos Mavrogiannopoulos  <nmav@gnutls.org>

	repo: require bison for building

2019-07-19  Nikos Mavrogiannopoulos  <nmav@redhat.com>

	tools: included in code coverage

	.gitmodules: gnulib repo was moved to gitlab mirror

2019-07-18  Nikos Mavrogiannopoulos  <nmav@gnutls.org>

	Merge branch 'tmp-mingw32' into 'master'
	.gitlab-ci.yml: ensure that we don't have libtasn1 installed in windows build

	See merge request gnutls/libtasn1!21

