Jay Berkenbilt
|
7f023701dd
|
Formatting: remove space in range-style for loops
Change .clang-format and commit automated changes from a fresh run of
format-code
|
2022-04-30 13:26:43 -04:00 |
|
Jay Berkenbilt
|
12f1eb15ca
|
Programmatically apply new formatting to code
Run this:
for i in **/*.cc **/*.c **/*.h **/*.hh; do
clang-format < $i >| $i.new && mv $i.new $i
done
|
2022-04-04 08:10:40 -04:00 |
|
Jay Berkenbilt
|
2229e37e88
|
Add a blank line after the first header included in each source
|
2022-02-04 16:31:31 -05:00 |
|
Jay Berkenbilt
|
1a7d3700a6
|
Fix unnecessary copies in auto iter (fixes #426)
Also switch to colon-style iteration in some cases. Thanks to Dean
Scarff for drawing this to my attention after detecting some
unnecessary copies with
https://clang.llvm.org/extra/clang-tidy/checks/performance-for-range-copy.html
|
2020-04-08 20:45:26 -04:00 |
|
Dean Scarff
|
0f2507234f
|
Add OpenSSL/BoringSSL crypto provider
Fixes qpdf/qpdf#417
|
2020-04-06 09:01:55 -04:00 |
|
Jay Berkenbilt
|
127a957aee
|
Allow runtime inspection/override of crypto provider
|
2019-11-09 09:53:42 -05:00 |
|
Jay Berkenbilt
|
88bedb41fe
|
Implement gnutls crypto provider (fixes #218)
Thanks to Zdenek Dohnal <zdohnal@redhat.com> for contributing the code
used for the gnutls crypto provider.
|
2019-11-09 09:53:38 -05:00 |
|
Jay Berkenbilt
|
cc14523440
|
Update autoconf to support crypto selection
|
2019-11-09 08:18:02 -05:00 |
|
Jay Berkenbilt
|
2de41856a0
|
QPDFCryptoProvider: initial implementation
|
2019-11-09 08:18:02 -05:00 |
|