/* * Hash Info: Hash algorithms information * * Copyright (c) 2013 Dmitry Kasatkin * * This program 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 2 of the License, or (at your option) * any later version. * */ #ifndef _CRYPTO_HASH_INFO_H #define _CRYPTO_HASH_INFO_H #include #include #include /* not defined in include/crypto/ */ #define RMD128_DIGEST_SIZE 16 #define RMD160_DIGEST_SIZE 20 #define RMD256_DIGEST_SIZE 32 #define RMD320_DIGEST_SIZE 40 /* not defined in include/crypto/ */ #define WP512_DIGEST_SIZE 64 #define WP384_DIGEST_SIZE 48 #define WP256_DIGEST_SIZE 32 /* not defined in include/crypto/ */ #define TGR128_DIGEST_SIZE 16 #define TGR160_DIGEST_SIZE 20 #define TGR192_DIGEST_SIZE 24 /* not defined in include/crypto/ */ #define SM3256_DIGEST_SIZE 32 extern const char *const hash_algo_name[HASH_ALGO__LAST]; extern const int hash_digest_size[HASH_ALGO__LAST]; #endif /* _CRYPTO_HASH_INFO_H */ d='selected'>master net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIngo Molnar <mingo@kernel.org>2016-08-24 11:08:10 +0200
committerIngo Molnar <mingo@kernel.org>2016-08-24 11:08:10 +0200
commit36e674a05164cdbb9d4a5b1b0b279fabae6c13bd (patch)
treeb00a7ae974277eaed48eebd8287ca32fcaae26fe
parentb6a32f023fcc9cbd1602f78a467fd8d41bbc9457 (diff)
parent5e30d55c71de058e4156080fe32d426c22d094cb (diff)
Merge tag 'perf-core-for-mingo-20160823' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core
Pull perf/core improvements and fixes from Arnaldo Carvalho de Melo: User visible changes: . Allow configuring the default 'perf report -s' sort order in ~/.perfconfig, for instance, "sym,dso" may be more fitting for kernel developers. (Arnaldo Carvalho de Melo) - Support x8/x16/x32/x64 hexadecimal "types" in ftrace and 'perf probe' (Masami Hiramatsu) Infrastructure changes: - Skip running the feature tests for 'make install-doc' (Rui Teng) - Introduce tools/include/linux/time64.h with *SEC_PER_*SEC macros to use in all of tools/ (Arnaldo Carvalho de Melo) - Break down symbol__disassemble() into multiple functions, to ease future work on better reporting the errors that may take place in the various steps it performs (possibly decompressing kernel module files, getting build-id keyed files, calling objdump, parsing its output, etc) (Arnaldo Carvalho de Melo) - Typo fixes in various places (Colin Ian King) - Remove superfluous NULL check in the TUI code (Colin Ian King) - Allow displaying multiple header lines in the TUI browser, prep work for the 'perf c2c' browser (Jiri Olsa) - Copy coresight-pmu.h header file needed by perf tools (Mathieu Poirier) - Use __weak definition from linux/compiler.h (Rui Teng) Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com> Signed-off-by: Ingo Molnar <mingo@kernel.org>