aboutsummaryrefslogtreecommitdiff
path: root/gost_prov_digest.c
AgeCommit message (Collapse)AuthorFilesLines
2021-12-11MSVC: Replace tentative arrays with pointersVitaly Chikunov1-3/+3
Error message example: gost_prov_cipher.c(237,63): error C2059: syntax error: '}' Signed-off-by: Vitaly Chikunov <vt@altlinux.org>
2021-10-11Making a gost provider - Add the digestsRichard Levitte1-0/+200
We add the digests for the provider as wrappers around the routines designed for ENGINEs. This is not the most elegant, but it does the job. When an algorithm has an OID, it's included in the OSSL_ALGORITHM name as an aliase. This is the way to avoid having to register the OIDs in OpenSSL proper. test/01-digest.t is modified to test the provider as well.