Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2014-05-16 | expanded usage of DECR_LEN(). | Nikos Mavrogiannopoulos | 1 | -38/+131 | |
2014-05-16 | simplified _asn1_get_octet_string(). | Nikos Mavrogiannopoulos | 1 | -10/+8 | |
2014-05-16 | simplified _asn1_get_indefinite_length_string() | Nikos Mavrogiannopoulos | 1 | -12/+10 | |
2014-05-16 | More precise tracking of data. | Nikos Mavrogiannopoulos | 1 | -48/+124 | |
2014-05-16 | asn1_der_decoding_element is just an alias of asn1_der_decoding(). | Nikos Mavrogiannopoulos | 1 | -761/+6 | |
This eliminates the need of massive code duplication. | |||||
2014-05-16 | More precise length check in _asn1_get_indefinite_length_string(). | Nikos Mavrogiannopoulos | 1 | -1/+1 | |
2014-05-16 | Use the correct max length definition. | Nikos Mavrogiannopoulos | 2 | -3/+1 | |
2014-05-10 | cleaned up a bit _asn1_remove_node(). | Nikos Mavrogiannopoulos | 1 | -5/+9 | |
2014-05-10 | prevent memset() from being optimized out. | Nikos Mavrogiannopoulos | 2 | -2/+18 | |
2014-05-05 | doc update | Nikos Mavrogiannopoulos | 1 | -0/+3 | |
2014-05-04 | Corrected an off-by-one error. | Nikos Mavrogiannopoulos | 1 | -1/+1 | |
The issue was discovered using the codenomicon TLS suite. | |||||
2014-05-02 | Added stable mark | Nikos Mavrogiannopoulos | 1 | -1/+1 | |
2014-05-01 | bumped version | Nikos Mavrogiannopoulos | 1 | -1/+1 | |
2014-05-01 | bumped version | Nikos Mavrogiannopoulos | 2 | -3/+3 | |
2014-05-01 | Use the smallest of the 2 lengths for the comparison | Kurt Roeckx | 1 | -7/+4 | |
We're sorting 2 strings here based on X.690 section 11.6 and 6.3 | |||||
2014-04-28 | Added minmax gnulib module. | Nikos Mavrogiannopoulos | 5 | -2/+117 | |
2014-04-28 | more files to ignore | Nikos Mavrogiannopoulos | 1 | -0/+4 | |
2014-04-27 | Make asn1_ordering_set_of() return error if it can't find data for one of ↵ | Kurt Roeckx | 1 | -0/+5 | |
the entries. | |||||
2014-04-27 | Check that p is not NULL | Kurt Roeckx | 1 | -0/+2 | |
As far as I can tell this should never happen. | |||||
2014-04-27 | updated bison file | Nikos Mavrogiannopoulos | 1 | -951/+766 | |
2014-04-26 | undid optimization in patch 057193dcc2089520ab36d95f42d12f4ffd8127b5 | Nikos Mavrogiannopoulos | 1 | -0/+1 | |
2014-04-26 | Added test that decodes and re-encodes a DER CRL. | Nikos Mavrogiannopoulos | 3 | -3/+147 | |
2014-04-26 | doc update | Nikos Mavrogiannopoulos | 1 | -0/+1 | |
2014-04-26 | Fix memory leak. | Kurt Roeckx | 1 | -0/+3 | |
2014-04-26 | _asn1_ordering_*(): Fix memory leak in case of error | Kurt Roeckx | 1 | -14/+52 | |
2014-04-26 | Make _asn1_ordering_* return error values and check them. | Kurt Roeckx | 2 | -19/+31 | |
2014-04-26 | Call ordering functions with the right length | Kurt Roeckx | 1 | -2/+2 | |
We're going to insert the length of the set and at this point are going to order it. But we called it with the wrong length. Also updates the check to only do it when the buffer isn't to small. | |||||
2014-04-22 | Fix syntax-check nits. | Simon Josefsson | 3 | -9/+9 | |
2014-04-22 | Update copyright years. | Simon Josefsson | 59 | -59/+59 | |
2014-04-22 | Update gnulib files. | Simon Josefsson | 130 | -332/+1011 | |
2014-04-17 | doc update | Nikos Mavrogiannopoulos | 1 | -1/+1 | |
2014-04-17 | simplified asn1_find_structure_from_oid() and asn1_expand_any_defined_by(). | Nikos Mavrogiannopoulos | 2 | -13/+9 | |
2014-04-15 | doc update | Nikos Mavrogiannopoulos | 1 | -0/+1 | |
2014-04-15 | Do not try to write over null values | Nikos Mavrogiannopoulos | 1 | -5/+9 | |
2014-04-15 | fixed several coverity reported bugs. | Nikos Mavrogiannopoulos | 2 | -8/+12 | |
2014-03-28 | doc update | Nikos Mavrogiannopoulos | 1 | -0/+1 | |
2014-03-28 | asn1_write_value: fix segfault when deleting an unauthorized element | Jean-Louis Thekekara | 1 | -0/+6 | |
Segfaults can occur, since value is dereferenced later, ex: 352 if ((isdigit (value[0])) || (value[0] == '-') Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com> | |||||
2014-03-28 | cleaned up code | Nikos Mavrogiannopoulos | 1 | -2/+1 | |
2014-03-28 | asn1_write_value: allow SET_OF elements deletion | Jean-Louis Thekekara | 1 | -1/+1 | |
SET_OF elements could just be deleted as SEQUENCE_OF ones. Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com> | |||||
2014-03-28 | extract_tag_der_recursive: fix compilation errors | Jean-Louis Thekekara | 1 | -2/+2 | |
Fix the following errors introduced by extract_tag_der_recursive usage: decoding.c: In function 'extract_tag_der_recursive': decoding.c:560:5: error: 'ris' may be used uninitialized in this function [-Werror=maybe-uninitialized] decoding.c: In function 'asn1_der_decoding_startEnd': decoding.c:2192:40: error: unused variable 'p3' [-Werror=unused-variable] Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com> | |||||
2014-03-14 | corrected delete_unneeded_choice_fields(). | Nikos Mavrogiannopoulos | 1 | -2/+5 | |
2014-03-14 | free all allocated memory | Nikos Mavrogiannopoulos | 1 | -0/+1 | |
2014-03-14 | doc update | Nikos Mavrogiannopoulos | 1 | -0/+3 | |
2014-03-14 | Added self-check for recursive choices. | Nikos Mavrogiannopoulos | 3 | -3/+119 | |
2014-03-14 | Handle recursive CHOICEs. | Nikos Mavrogiannopoulos | 1 | -3/+8 | |
2014-03-14 | Use special function for common usage of _asn1_extract_tag_der(). | Nikos Mavrogiannopoulos | 1 | -56/+41 | |
2013-11-27 | distribute stamp_docs to avoid regenerating docs everywhere. | Nikos Mavrogiannopoulos | 1 | -1/+1 | |
2013-11-25 | corrected so-number | Nikos Mavrogiannopoulos | 1 | -3/+3 | |
2013-11-25 | doc update | Nikos Mavrogiannopoulos | 2 | -1/+3 | |
2013-11-25 | include asn1_delete_structure2() to tests | Nikos Mavrogiannopoulos | 1 | -1/+6 | |