summaryrefslogtreecommitdiffstats
path: root/cpukit/libcrypt/crypt-sha256.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* libcrypt: There is no need to clear message digestXin LI2022-09-081-2/+0
| | | | | | | | context after they are finialized after r336539, so do not do it. Submitted by: David CARLIER <devnexen gmail com> MFC after: 1 month (after r336539) Differential Revision: https://reviews.freebsd.org/D16059
* Get rid of unused variables.Xin LI2022-09-081-8/+1
| | | | | | | | | copied_key and copied_salt are assigned with NULL and never used otherwise. Remove the two variables and related code. Reviewed by: pfg MFC after: 2 weeks Differential Revision: https://reviews.freebsd.org/D16314
* lib: further adoption of SPDX licensing ID tags.Pedro F. Giffuni2022-09-081-1/+3
| | | | | | | | | | | | Mainly focus on files that use BSD 2-Clause license, however the tool I was using mis-identified many licenses so this was mostly a manual - error prone - task. The Software Package Data Exchange (SPDX) group provides a specification to make it easier for automated tools to detect and summarize well known opensource licenses. We are gradually adopting the specification, noting that the tags are considered only advisory and do not, in any way, superceed or replace the license texts.
* Add crypt_r(), etc.Sebastian Huber2014-11-201-0/+272
Add crypt_add_format(), crypt_r(), crypt_md5_r(), crypt_sha256_r() and crypt_sha512_r().