blob: 704d21ec6d0d8fbf5c2f29f350679697b47cace2 [file] [log] [blame]
Simon Glassbf36c5d2012-12-05 14:46:38 +00001/*
2 * Copyright (c) 2012 The Chromium OS Authors.
3 *
4 * (C) Copyright 2011
5 * Joe Hershberger, National Instruments, joe.hershberger@ni.com
6 *
7 * (C) Copyright 2000
8 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
9 *
Wolfgang Denk1a459662013-07-08 09:37:19 +020010 * SPDX-License-Identifier: GPL-2.0+
Simon Glassbf36c5d2012-12-05 14:46:38 +000011 */
12
13#include <common.h>
14#include <command.h>
15#include <hash.h>
Simon Glass218da0f2013-02-24 17:33:32 +000016#include <linux/ctype.h>
Simon Glassbf36c5d2012-12-05 14:46:38 +000017
18static int do_hash(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
19{
Simon Glass218da0f2013-02-24 17:33:32 +000020 char *s;
Simon Glassd5b76672013-02-24 17:33:26 +000021 int flags = HASH_FLAG_ENV;
Simon Glassbf36c5d2012-12-05 14:46:38 +000022
Nikolay Dimitrov3ef46a92014-12-12 20:01:23 +020023#ifdef CONFIG_HASH_VERIFY
Simon Glass6b3ff982013-02-24 17:33:11 +000024 if (argc < 4)
25 return CMD_RET_USAGE;
Simon Glassbf36c5d2012-12-05 14:46:38 +000026 if (!strcmp(argv[1], "-v")) {
Simon Glassd5b76672013-02-24 17:33:26 +000027 flags |= HASH_FLAG_VERIFY;
Simon Glassbf36c5d2012-12-05 14:46:38 +000028 argc--;
29 argv++;
30 }
Simon Glassbf36c5d2012-12-05 14:46:38 +000031#endif
32 /* Move forward to 'algorithm' parameter */
33 argc--;
34 argv++;
Simon Glass218da0f2013-02-24 17:33:32 +000035 for (s = *argv; *s; s++)
36 *s = tolower(*s);
Simon Glassd5b76672013-02-24 17:33:26 +000037 return hash_command(*argv, flags, cmdtp, flag, argc - 1, argv + 1);
Simon Glassbf36c5d2012-12-05 14:46:38 +000038}
39
40#ifdef CONFIG_HASH_VERIFY
Nikolay Dimitrov3ef46a92014-12-12 20:01:23 +020041#define HARGS 6
Simon Glassbf36c5d2012-12-05 14:46:38 +000042#else
Nikolay Dimitrov3ef46a92014-12-12 20:01:23 +020043#define HARGS 5
Simon Glassbf36c5d2012-12-05 14:46:38 +000044#endif
Nikolay Dimitrov3ef46a92014-12-12 20:01:23 +020045
46U_BOOT_CMD(
47 hash, HARGS, 1, do_hash,
48 "compute hash message digest",
49 "algorithm address count [[*]hash_dest]\n"
50 " - compute message digest [save to env var / *address]"
51#ifdef CONFIG_HASH_VERIFY
52 "\nhash -v algorithm address count [*]hash\n"
53 " - verify message digest of memory area to immediate value, \n"
54 " env var or *address"
55#endif
56);