/* * Copyright 2014-2023 The GmSSL Project. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the License); you may * not use this file except in compliance with the License. * * http://www.apache.org/licenses/LICENSE-2.0 */ #include #include #include #include #include #include #include #include static const char *usage = "-lib so_path [-hex|-bin] [-pubkey pem [-id str]] [-in file|-in_str str] [-out file]"; static const char *help = "Options\n" "\n" " -lib so_path Vendor's SDF dynamic library\n" " -hex Output hash value as hex string (by default)\n" " -bin Output hash value as binary\n" " -pubkey pem Signer's SM2 public key\n" " When `-pubkey` is specified, hash with SM2 Z value\n" " -id str SM2 Signer's ID string\n" " -id_hex hex SM2 Signer's ID in hex format\n" " `-id` and `-id_hex` should be used with `-pubkey`\n" " `-id` and `-id_hex` should not be used together\n" " If `-pubkey` is specified without `-id` or `id_hex`,\n" " the default ID string '1234567812345678' is used\n" " -in_str str To be hashed string\n" " -in file | stdin To be hashed file path\n" " `-in_str` and `-in` should not be used together\n" " If neither `-in` nor `-in_str` specified, read from stdin\n" " -out file | stdout Output file path. If not specified, output to stdout\n" "\n" "Examples\n" "\n" " gmssl sdfdigest -in_str abc\n" "\n" " gmssl sdfdigest -in_str abc -bin\n" "\n" " gmssl sdfdigest -in /path/to/file\n" "\n" " gmssl sdfdigest -pubkey sm2pubkey.pem -id alice -in /path/to/file -bin\n" "\n" " When reading from stdin, make sure the trailing newline character is removed\n" "\n" " Linux/Mac:\n" " echo -n abc | gmssl sdfdigest\n" "\n" " Windows:\n" " C:\\> echo |set/p=\"abc\" | gmssl sdfdigest\n" "\n"; int sdfdigest_main(int argc, char **argv) { int ret = 1; char *prog = argv[0]; char *lib = NULL; int outformat = 0; char *pubkeyfile = NULL; char *in_str = NULL; char *infile = NULL; char *outfile = NULL; char *id = NULL; char *id_hex = NULL; FILE *pubkeyfp = NULL; FILE *infp = stdin; FILE *outfp = stdout; uint8_t id_bin[64]; size_t id_bin_len; SDF_DEVICE dev; SDF_DIGEST_CTX ctx; uint8_t dgst[32]; int i; memset(&ctx, 0, sizeof(ctx)); argc--; argv++; while (argc > 0) { if (!strcmp(*argv, "-help")) { printf("usage: gmssl %s %s\n", prog, usage); printf("%s\n", help); ret = 0; goto end; } else if (!strcmp(*argv, "-lib")) { if (--argc < 1) goto bad; lib = *(++argv); } else if (!strcmp(*argv, "-hex")) { if (outformat > 0) { fprintf(stderr, "gmssl %s: `-hex` and `-bin` should not be used together\n", prog); goto end; } outformat = 1; } else if (!strcmp(*argv, "-bin")) { if (outformat > 0) { fprintf(stderr, "gmssl %s: `-hex` and `-bin` should not be used together\n", prog); goto end; } outformat = 2; } else if (!strcmp(*argv, "-pubkey")) { if (--argc < 1) goto bad; pubkeyfile = *(++argv); if (!(pubkeyfp = fopen(pubkeyfile, "rb"))) { fprintf(stderr, "gmssl %s: open '%s' failure : %s\n", prog, pubkeyfile, strerror(errno)); goto end; } } else if (!strcmp(*argv, "-id")) { if (id_hex) { fprintf(stderr, "gmssl %s: `-id` and `-id_hex` should not be used together\n", prog); goto end; } if (--argc < 1) goto bad; id = *(++argv); } else if (!strcmp(*argv, "-id_hex")) { if (id) { fprintf(stderr, "gmssl %s: `-id` and `-id_hex` should not be used together\n", prog); goto end; } if (--argc < 1) goto bad; id_hex = *(++argv); if (strlen(id_hex) > sizeof(id_bin) * 2) { fprintf(stderr, "gmssl %s: `-id_hex` should be less then %zu bytes\n", prog, sizeof(id_bin)); goto end; } if (hex_to_bytes(id_hex, strlen(id_hex), id_bin, &id_bin_len) != 1) { fprintf(stderr, "gmssl %s: invalid `-id_hex` value\n", prog); goto end; } } else if (!strcmp(*argv, "-in_str")) { if (infile) { fprintf(stderr, "gmssl %s: `-in` and `-in_str` should not be used together\n", prog); goto end; } if (--argc < 1) goto bad; in_str = *(++argv); } else if (!strcmp(*argv, "-in")) { if (in_str) { fprintf(stderr, "gmssl %s: `-in` and `-in_str` should not be used together\n", prog); goto end; } if (--argc < 1) goto bad; infile = *(++argv); if (!(infp = fopen(infile, "rb"))) { fprintf(stderr, "gmssl%s: open '%s' failure : %s\n", prog, infile, strerror(errno)); goto end; } } else if (!strcmp(*argv, "-out")) { if (--argc < 1) goto bad; outfile = *(++argv); if (!(outfp = fopen(outfile, "wb"))) { fprintf(stderr, "gmssl %s: open '%s' failure : %s\n", prog, outfile, strerror(errno)); goto end; } } else { fprintf(stderr, "gmssl %s: illegal option '%s'\n", prog, *argv); goto end; bad: fprintf(stderr, "gmssl %s: '%s' option value missing\n", prog, *argv); goto end; } argc--; argv++; } if (!lib) { fprintf(stderr, "gmssl %s: '-lib' option required\n", prog); goto end; } if ((id || id_hex) && !pubkeyfile) { fprintf(stderr, "gmssl %s: option `-id` or `-id_hex` must be with '-pubkey'\n", prog); goto end; } if (sdf_load_library(lib, NULL) != 1) { fprintf(stderr, "gmssl %s: load library failure\n", prog); goto end; } if (sdf_open_device(&dev) != 1) { fprintf(stderr, "gmssl %s: open device failure\n", prog); goto end; } if (sdf_digest_init(&ctx, &dev) != 1) { fprintf(stderr, "gmssl %s: inner error\n", prog); goto end; } if (pubkeyfile) { SM2_KEY sm2_key; uint8_t z[32]; if (sm2_public_key_info_from_pem(&sm2_key, pubkeyfp) != 1) { fprintf(stderr, "gmssl %s: parse public key failed\n", prog); goto end; } if (id_hex) { sm2_compute_z(z, &sm2_key.public_key, (char *)id_bin, id_bin_len); } else { if (!id) { id = SM2_DEFAULT_ID; } sm2_compute_z(z, &sm2_key.public_key, id, strlen(id)); } if (sdf_digest_update(&ctx, z, sizeof(z)) != 1) { fprintf(stderr, "gmssl %s: inner error\n", prog); goto end; } } if (in_str) { if (sdf_digest_update(&ctx, (uint8_t *)in_str, strlen(in_str)) != 1) { fprintf(stderr, "gmssl %s: inner error\n", prog); goto end; } } else { uint8_t buf[4096]; size_t len; while ((len = fread(buf, 1, sizeof(buf), infp)) > 0) { if (sdf_digest_update(&ctx, buf, len) != 1) { fprintf(stderr, "gmssl %s: inner error\n", prog); goto end; } } memset(buf, 0, sizeof(buf)); } if (sdf_digest_finish(&ctx, dgst) != 1) { fprintf(stderr, "gmssl %s: inner error\n", prog); goto end; } if (outformat > 1) { if (fwrite(dgst, 1, sizeof(dgst), outfp) != sizeof(dgst)) { fprintf(stderr, "gmssl %s: output failure : %s\n", prog, strerror(errno)); goto end; } } else { for (i = 0; i < sizeof(dgst); i++) { fprintf(outfp, "%02x", dgst[i]); } fprintf(outfp, "\n"); } ret = 0; end: (void)sdf_digest_cleanup(&ctx); if (pubkeyfp) fclose(pubkeyfp); if (infile && infp) fclose(infp); if (outfile && outfp) fclose(outfp); return ret; }