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
|
77198d5310
|
Delegate random number generation to crypto provider (fixes #418)
|
2020-04-06 11:23:02 -04:00 |
|
Jay Berkenbilt
|
d1ffe46c04
|
AES_PDF: move CBC logic from pipeline to AES_PDF implementation
|
2019-11-09 08:18:02 -05:00 |
|
Jay Berkenbilt
|
c8cda4f965
|
AES_PDF: switch to pluggable crypto
|
2019-11-09 08:18:02 -05:00 |
|
Jay Berkenbilt
|
bb427bd117
|
SHA2: switch to pluggable crypto
|
2019-11-09 08:18:02 -05:00 |
|
Jay Berkenbilt
|
4287fcc002
|
RC4: switch to pluggable crypto
|
2019-11-09 08:18:02 -05:00 |
|
Jay Berkenbilt
|
ce8f9b6608
|
MD5: switch to pluggable crypto
|
2019-11-09 08:18:02 -05:00 |
|
Jay Berkenbilt
|
2de41856a0
|
QPDFCryptoProvider: initial implementation
|
2019-11-09 08:18:02 -05:00 |
|