Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-01-16 | Bump copyright date to 2019 | Nick Mathewson | |
2018-12-18 | Use a single path for all PEM-like objects in get_next_token() | Nick Mathewson | |
Previously, we would decode the PEM wrapper for keys twice: once in get_next_token, and once later in PEM decode. Now we just do all of the wrapper and base64 stuff in get_next_token, and store the base64-decoded part in the token object for keys and non-keys alike. This change should speed up parsing slightly by letting us skip a bunch of stuff in crypto_pk_read_*from_string(), including the tag detection parts of pem_decode(), and an extra key allocation and deallocation pair. Retaining the base64-decoded part in the token object will allow us to speed up our microdesc parsing, since it is the asn1 portion that we actually want to retain. | |||
2018-10-25 | Add a couple more checks to test_parsecommon.c | Nick Mathewson | |
These checks should make coverity stop giving us a "dereference before null check" warning here. | |||
2018-10-16 | One testcase for annotation handling in tokenize_string() | rl1987 | |
2018-10-16 | Test AT_END checking in tokenize_string() | rl1987 | |
2018-10-16 | Add testcase for too many elements in tokenize_string() input | rl1987 | |
2018-10-16 | Add testcase for too few elements in tokenize_string() input | rl1987 | |
2018-10-16 | Unit-test multiple line parsing with tokenize_string() | rl1987 | |
2018-10-16 | Unit-test some error conditions in get_next_token() | rl1987 | |
2018-10-16 | Test object parsing in get_next_token() | rl1987 | |
2018-10-16 | Fix memory management in test_parsecommon_get_next_token_parse_keys | rl1987 | |
2018-10-16 | Test RSA private key parsing with get_next_token() | rl1987 | |
2018-10-16 | Test-case for public key parsing using get_next_token() | rl1987 | |
2018-10-16 | Test argument concatenation in get_next_token() | rl1987 | |
2018-10-16 | First testcase for get_next_token() | rl1987 | |
2018-10-16 | Add new source file to test target | rl1987 | |