summaryrefslogtreecommitdiffhomepage
path: root/src/test/nxt_base64_test.c (follow)
AgeCommit message (Collapse)AuthorFilesLines
2021-10-26Custom implementation of Base64 decoding function.Valentin Bartenev1-0/+98
Compared to the previous implementation based on OpenSSL, the new implementation has these advantages: 1. Strict and reliable detection of invalid strings, including strings with less than 4 bytes of garbage at the end; 2. Allows to use Base64 strings without '=' padding.