~ubuntu-branches/ubuntu/trusty/grub2/trusty-updates

« back to all changes in this revision

Viewing changes to lib/libgcrypt-grub/cipher/hash-common.h

  • Committer: Bazaar Package Importer
  • Author(s): Colin Watson
  • Date: 2011-02-08 11:39:26 UTC
  • mfrom: (17.6.26 experimental)
  • mto: (17.6.27 experimental)
  • mto: This revision was merged to the branch mainline in revision 104.
  • Revision ID: james.westby@ubuntu.com-20110208113926-clfs90haboyk9zip
Tags: 1.99~rc1-2
* Merge 1.98+20100804-13 and 1.98+20100804-14, updating translations:
  - Kazakh (Baurzhan Muftakhidinov / Timur Birsh).
* mkconfig_skip_dmcrypt.patch: Refer to GRUB_PRELOAD_MODULES rather than
  suggesting people write a /etc/grub.d/01_modules script (thanks, Jordan
  Uggla).
* Handle empty dir passed to grub_find_root_device_from_mountinfo; fixes
  grub-mkrelpath on btrfs subvolumes (LP: #712029).
* Add rootflags=subvol=<name> if / is on a btrfs subvolume (LP: #712029).
* Upload to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* This file was automatically imported with 
2
 
   import_gcry.py. Please don't modify it */
3
 
/* hash-common.h - Declarations of common code for hash algorithms.
4
 
 * Copyright (C) 2008 Free Software Foundation, Inc.
5
 
 *
6
 
 * This file is part of Libgcrypt.
7
 
 *
8
 
 * Libgcrypt is free software; you can redistribute it and/or modify
9
 
 * it under the terms of the GNU Lesser General Public License as
10
 
 * published by the Free Software Foundation; either version 2.1 of
11
 
 * the License, or (at your option) any later version.
12
 
 *
13
 
 * Libgcrypt is distributed in the hope that it will be useful,
14
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
 
 * GNU Lesser General Public License for more details.
17
 
 *
18
 
 * You should have received a copy of the GNU Lesser General Public
19
 
 * License along with this program; if not, see <http://www.gnu.org/licenses/>.
20
 
 */
21
 
 
22
 
#ifndef GCRY_HASH_COMMON_H
23
 
#define GCRY_HASH_COMMON_H
24
 
 
25
 
 
26
 
const char * _gcry_hash_selftest_check_one 
27
 
/**/         (int algo, 
28
 
              int datamode, const void *data, size_t datalen,
29
 
              const void *expect, size_t expectlen);
30
 
     
31
 
 
32
 
 
33
 
 
34
 
 
35
 
#endif /*GCRY_HASH_COMMON_H*/