/* 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); } f='/guix/'>summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2017-01-03gnu: Add Zile-on-Guile....Ludovic Courtès
2016-10-19gnu: zile: Use 'modify-phases' syntax....Efraim Flashner
2016-10-19gnu: zile: Update to 2.4.13....Efraim Flashner
2014-10-26gnu: Some cleanup based on lint checkers....Eric Bavier
2014-04-08gnu: Move help2man package to (gnu packages man) module....David Thompson
2014-04-03gnu: zile: Upgrade to 2.4.11....Andreas Enge
2014-02-25gnu: zile: Upgrade to 2.4.10...Eric Bavier
2013-12-01gnu: Synchronize descriptions with 'gnumaint'.Ludovic Courtès
2013-10-09Synchronize package descriptions with the Womb....Ludovic Courtès
2013-09-26gnu: zile: Fix references to /bin/sh....Ludovic Courtès