blob: 5534a735fa7eef8c1e2b1f105c2a6e5f9bf47de7 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glassbf36c5d2012-12-05 14:46:38 +00002/*
3 * Copyright (c) 2012 The Chromium OS Authors.
4 *
5 * (C) Copyright 2011
6 * Joe Hershberger, National Instruments, joe.hershberger@ni.com
7 *
8 * (C) Copyright 2000
9 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
Simon Glassbf36c5d2012-12-05 14:46:38 +000010 */
11
12#include <common.h>
13#include <command.h>
14#include <hash.h>
Simon Glass218da0f2013-02-24 17:33:32 +000015#include <linux/ctype.h>
Simon Glassbf36c5d2012-12-05 14:46:38 +000016
Igor Opaniuk348ea872024-02-07 01:01:32 +010017#if IS_ENABLED(CONFIG_HASH_VERIFY)
18#define HARGS 6
19#else
20#define HARGS 5
21#endif
22
Simon Glass09140112020-05-10 11:40:03 -060023static int do_hash(struct cmd_tbl *cmdtp, int flag, int argc,
24 char *const argv[])
Simon Glassbf36c5d2012-12-05 14:46:38 +000025{
Simon Glass218da0f2013-02-24 17:33:32 +000026 char *s;
Simon Glassd5b76672013-02-24 17:33:26 +000027 int flags = HASH_FLAG_ENV;
Simon Glassbf36c5d2012-12-05 14:46:38 +000028
Igor Opaniuk348ea872024-02-07 01:01:32 +010029 if (argc < (HARGS - 1))
Simon Glass6b3ff982013-02-24 17:33:11 +000030 return CMD_RET_USAGE;
Igor Opaniuk348ea872024-02-07 01:01:32 +010031
32#if IS_ENABLED(CONFIG_HASH_VERIFY)
Simon Glassbf36c5d2012-12-05 14:46:38 +000033 if (!strcmp(argv[1], "-v")) {
Simon Glassd5b76672013-02-24 17:33:26 +000034 flags |= HASH_FLAG_VERIFY;
Simon Glassbf36c5d2012-12-05 14:46:38 +000035 argc--;
36 argv++;
37 }
Simon Glassbf36c5d2012-12-05 14:46:38 +000038#endif
39 /* Move forward to 'algorithm' parameter */
40 argc--;
41 argv++;
Simon Glass218da0f2013-02-24 17:33:32 +000042 for (s = *argv; *s; s++)
43 *s = tolower(*s);
Simon Glassd5b76672013-02-24 17:33:26 +000044 return hash_command(*argv, flags, cmdtp, flag, argc - 1, argv + 1);
Simon Glassbf36c5d2012-12-05 14:46:38 +000045}
46
Nikolay Dimitrov3ef46a92014-12-12 20:01:23 +020047U_BOOT_CMD(
48 hash, HARGS, 1, do_hash,
49 "compute hash message digest",
50 "algorithm address count [[*]hash_dest]\n"
51 " - compute message digest [save to env var / *address]"
Igor Opaniuk348ea872024-02-07 01:01:32 +010052#if IS_ENABLED(CONFIG_HASH_VERIFY)
Nikolay Dimitrov3ef46a92014-12-12 20:01:23 +020053 "\nhash -v algorithm address count [*]hash\n"
54 " - verify message digest of memory area to immediate value, \n"
55 " env var or *address"
56#endif
57);