summaryrefslogtreecommitdiff
path: root/src/common
Commit message (Expand)AuthorAgeFilesLines
* Simplify error handing of jsonapi.c for the frontendMichael Paquier2021-07-021-31/+30
* Fix incautious handling of possibly-miscoded strings in client code.Tom Lane2021-06-072-3/+18
* Adjust locations which have an incorrect copyright yearDavid Rowley2021-06-045-5/+5
* Factor out system call names from error messagesPeter Eisentraut2021-04-231-1/+1
* Fix typos and grammar in comments and docsMichael Paquier2021-04-192-2/+2
* Refactor HMAC implementationsMichael Paquier2021-04-034-126/+555
* pg_upgrade: Check version of target cluster binariesPeter Eisentraut2021-03-031-2/+1
* Improve reporting for syntax errors in multi-line JSON data.Tom Lane2021-03-011-3/+5
* Add result size as argument of pg_cryptohash_final() for overflow checksMichael Paquier2021-02-155-19/+66
* Fix copy-paste error with SHA256 digest length in checksum_helper.cMichael Paquier2021-02-111-5/+5
* Introduce --with-ssl={openssl} as a configure optionMichael Paquier2021-02-011-1/+1
* Add mbverifystr() functions specific to each encoding.Heikki Linnakangas2021-01-281-74/+449
* Introduce SHA1 implementations in the cryptohash infrastructureMichael Paquier2021-01-235-0/+465
* Rework refactoring of hex and encoding routinesMichael Paquier2021-01-143-107/+193
* Fix and simplify some code related to cryptohashesMichael Paquier2021-01-081-34/+25
* Fix allocation logic of cryptohash context data with OpenSSLMichael Paquier2021-01-072-118/+79
* Update copyright for 2021Bruce Momjian2021-01-0252-55/+55
* Use setenv() in preference to putenv().Tom Lane2020-12-302-20/+4
* Revert "Add key management system" (978f869b99) & later commitsBruce Momjian2020-12-274-848/+0
* Fix function call typo in frontend Win32 code, commit 978f869b99Bruce Momjian2020-12-251-1/+1
* Really fix the dummy implementations in cipher.c.Tom Lane2020-12-251-5/+8
* fix no-return function call in cipher.c from commit 978f869b99Bruce Momjian2020-12-251-1/+1
* remove uint128 requirement from patch 978f869b99 (CFE)Bruce Momjian2020-12-251-3/+3
* Fix return value and const declaration from commit 978f869b99Bruce Momjian2020-12-251-3/+3
* Add key management systemBruce Momjian2020-12-254-0/+845
* move hex_decode() to /common so it can be called from frontendBruce Momjian2020-12-242-0/+107
* Refactor logic to check for ASCII-only characters in stringMichael Paquier2020-12-212-17/+18
* Improve some code around cryptohash functionsMichael Paquier2020-12-142-1/+21
* Refactor MD5 implementations according to new cryptohash infrastructureMichael Paquier2020-12-106-297/+639
* Simplify code for getting a unicode codepoint's canonical class.Michael Paquier2020-12-091-25/+22
* Change SHA2 implementation based on OpenSSL to use EVP digest routinesMichael Paquier2020-12-041-48/+80
* Fix compilation warnings in cryptohash_openssl.cMichael Paquier2020-12-021-2/+2
* Move SHA2 routines to a new generic API layer for crypto hashesMichael Paquier2020-12-028-176/+687
* Add support for abstract Unix-domain socketsPeter Eisentraut2020-11-251-1/+23
* Fix minor issues with new unicode {de,re}composition codeMichael Paquier2020-11-072-2/+2
* Second thoughts on TOAST decompression.Tom Lane2020-11-021-8/+9
* Fix two issues in TOAST decompression.Tom Lane2020-11-011-35/+66
* Fix issue with --enable-coverage and the new unicode {de,re}composition codeMichael Paquier2020-10-241-21/+17
* Improve performance of Unicode {de,re}composition in the backendMichael Paquier2020-10-233-43/+293
* Fix -Wcast-function-type warnings on Windows/MinGWPeter Eisentraut2020-10-211-1/+1
* Fix compilation warning in unicode_norm.cMichael Paquier2020-10-121-1/+2
* Use perfect hash for NFC and NFKC Unicode Normalization quick checkMichael Paquier2020-10-112-23/+66
* Remove logging.c from the shared library of src/common/Michael Paquier2020-10-011-4/+9
* Revert "Change SHA2 implementation based on OpenSSL to use EVP digest routines"Michael Paquier2020-09-291-49/+14
* Change SHA2 implementation based on OpenSSL to use EVP digest routinesMichael Paquier2020-09-281-14/+49
* Rethink API for pg_get_line.c, one more time.Tom Lane2020-09-221-1/+28
* Allow most keywords to be used as column labels without requiring AS.Tom Lane2020-09-181-1/+16
* Improve common/logging.c's support for multiple verbosity levels.Tom Lane2020-09-171-0/+18
* Skip unnecessary stat() calls in walkdir().Thomas Munro2020-09-072-19/+92
* Refactor pg_get_line() to expose an alternative StringInfo-based API.Tom Lane2020-09-061-21/+49