/* GNU Guix --- Functional package management for GNU Copyright (C) 2012 Ludovic Courtès This file is part of GNU Guix. GNU Guix is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. GNU Guix is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU Guix. If not, see . */ #include #define SHA256_CTX guix_hash_context static inline void SHA256_Init (struct SHA256_CTX *ctx) { guix_hash_init (ctx, GCRY_MD_SHA256); } #define SHA256_Update guix_hash_update static inline void SHA256_Final (void *resbuf, struct SHA256_CTX *ctx) { guix_hash_final (resbuf, ctx, GCRY_MD_SHA256); } ryrefslogtreecommitdiff
022-05-31 14:53:31 -0400'>2022-05-31
AgeCommit message (Expand)Author
2022-11-05Add EditorConfig specification....(
gnu: Remove python2-rdflib....Maxim Cournoyer
2022-05-31gnu: Add python-pyrdfa3....Maxim Cournoyer
2022-05-12gnu: python-sparqlwrapper: Update to 2.0.0....Maxim Cournoyer
2022-01-18gnu: python-sparqlwrapper: Build with older setuptools....Marius Bakke
2022-01-18gnu: python-rdflib-jsonld: Update to 0.6.2....Marius Bakke
2022-01-18gnu: python-rdflib: Update to 6.1.1....Marius Bakke
2022-01-05gnu: lucene++: Use G-expressions....Tobias Geerinckx-Rice
2022-01-05gnu: lucene++: Update to 3.0.8....Tobias Geerinckx-Rice
2021-12-13gnu: Simplify package inputs....Ludovic Courtès
2021-11-11gnu: Move a few Python packages to (gnu packages python-build)....Maxim Cournoyer
2021-07-21gnu: Add python-sparqlwrapper....Lars-Dominik Braun
2021-04-10gnu: raptor2: Use HTTPS home page and source URI....Nicolas Goaziou