mirror of
https://github.com/guanzhi/GmSSL.git
synced 2026-05-07 00:46:17 +08:00
225 lines
5.8 KiB
C
Executable File
225 lines
5.8 KiB
C
Executable File
/*
|
|
* Copyright 2014-2024 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 <stdio.h>
|
|
#include <errno.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <gmssl/sm4.h>
|
|
#include <gmssl/mem.h>
|
|
#include <gmssl/hex.h>
|
|
#include <gmssl/error.h>
|
|
|
|
|
|
static const char *usage = "{-encrypt|-decrypt} -sbytes num -key hex -iv hex [-in file] [-out file]";
|
|
|
|
static const char *options =
|
|
"\n"
|
|
"Options\n"
|
|
"\n"
|
|
" -sbytes num Parameter sbytes of CFB mode, should be 1, 8 or 16, 16 by default\n"
|
|
" -encrypt Encrypt\n"
|
|
" -decrypt Decrypt\n"
|
|
" -key hex Symmetric key in HEX format\n"
|
|
" -iv hex IV in HEX format\n"
|
|
" -in file | stdin Input data\n"
|
|
" -out file | stdout Output data\n"
|
|
"\n"
|
|
"Examples\n"
|
|
"\n"
|
|
" $ TEXT=`gmssl rand -outlen 20 -hex`\n"
|
|
" $ KEY=`gmssl rand -outlen 16 -hex`\n"
|
|
" $ IV=`gmssl rand -outlen 16 -hex`\n"
|
|
" $ echo -n $TEXT | gmssl sm4_cfb -encrypt -key $KEY -iv $IV -out sm4_cfb128_ciphertext.bin\n"
|
|
" $ gmssl sm4_cfb -decrypt -key $KEY -iv $IV -in sm4_cfb128_ciphertext.bin\n"
|
|
"\n"
|
|
" $ echo -n $TEXT | gmssl sm4_cfb -sbytes 1 -encrypt -key $KEY -iv $IV -out sm4_cfb8_ciphertext.bin\n"
|
|
" $ gmssl sm4_cfb -sbytes 1 -decrypt -key $KEY -iv $IV -in sm4_cfb8_ciphertext.bin\n"
|
|
"\n"
|
|
" $ echo -n $TEXT | gmssl sm4_cfb -sbytes 8 -encrypt -key $KEY -iv $IV -out sm4_cfb64_ciphertext.bin\n"
|
|
" $ gmssl sm4_cfb -sbytes 8 -decrypt -key $KEY -iv $IV -in sm4_cfb64_ciphertext.bin\n"
|
|
"\n";
|
|
|
|
int sm4_cfb_main(int argc, char **argv)
|
|
{
|
|
int ret = 1;
|
|
char *prog = argv[0];
|
|
int enc = -1;
|
|
int sbytes = SM4_CFB_128;
|
|
char *keyhex = NULL;
|
|
char *ivhex = NULL;
|
|
char *infile = NULL;
|
|
char *outfile = NULL;
|
|
uint8_t key[16];
|
|
size_t keylen;
|
|
uint8_t iv[16];
|
|
size_t ivlen;
|
|
FILE *infp = stdin;
|
|
FILE *outfp = stdout;
|
|
SM4_CFB_CTX ctx;
|
|
uint8_t buf[4096];
|
|
size_t inlen;
|
|
size_t outlen;
|
|
|
|
argc--;
|
|
argv++;
|
|
|
|
if (argc < 1) {
|
|
fprintf(stderr, "usage: gmssl %s %s\n", prog, usage);
|
|
return 1;
|
|
}
|
|
|
|
while (argc > 0) {
|
|
if (!strcmp(*argv, "-help")) {
|
|
printf("usage: gmssl %s %s\n", prog, usage);
|
|
printf("%s\n", options);
|
|
ret = 0;
|
|
goto end;
|
|
} else if (!strcmp(*argv, "-encrypt")) {
|
|
if (enc == 0) {
|
|
fprintf(stderr, "gmssl %s: `-encrypt` `-decrypt` should not be used together\n", prog);
|
|
goto end;
|
|
}
|
|
enc = 1;
|
|
} else if (!strcmp(*argv, "-decrypt")) {
|
|
if (enc == 1) {
|
|
fprintf(stderr, "gmssl %s: `-encrypt` `-decrypt` should not be used together\n", prog);
|
|
goto end;
|
|
}
|
|
enc = 0;
|
|
} else if (!strcmp(*argv, "-sbytes")) {
|
|
if (--argc < 1) goto bad;
|
|
sbytes = atoi(*(++argv));
|
|
if (sbytes != SM4_CFB_8 && sbytes != SM4_CFB_64 && sbytes != SM4_CFB_128) {
|
|
fprintf(stderr, "%s: value of `-sbytes` should be %d, %d or %d\n", prog,
|
|
SM4_CFB_8, SM4_CFB_64, SM4_CFB_128);
|
|
goto end;
|
|
}
|
|
} else if (!strcmp(*argv, "-key")) {
|
|
if (--argc < 1) goto bad;
|
|
keyhex = *(++argv);
|
|
if (strlen(keyhex) != sizeof(key) * 2) {
|
|
fprintf(stderr, "gmssl %s: invalid key length\n", prog);
|
|
goto end;
|
|
}
|
|
if (hex_to_bytes(keyhex, strlen(keyhex), key, &keylen) != 1) {
|
|
fprintf(stderr, "gmssl %s: invalid key hex digits\n", prog);
|
|
goto end;
|
|
}
|
|
} else if (!strcmp(*argv, "-iv")) {
|
|
if (--argc < 1) goto bad;
|
|
ivhex = *(++argv);
|
|
if (strlen(ivhex) != sizeof(iv) * 2) {
|
|
fprintf(stderr, "gmssl %s: invalid IV length\n", prog);
|
|
goto end;
|
|
}
|
|
if (hex_to_bytes(ivhex, strlen(ivhex), iv, &ivlen) != 1) {
|
|
fprintf(stderr, "gmssl %s: invalid IV hex digits\n", prog);
|
|
goto end;
|
|
}
|
|
} else if (!strcmp(*argv, "-in")) {
|
|
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 (enc < 0) {
|
|
fprintf(stderr, "gmssl %s: option -encrypt or -decrypt should be set\n", prog);
|
|
goto end;
|
|
}
|
|
if (!keyhex) {
|
|
fprintf(stderr, "gmssl %s: option `-key` missing\n", prog);
|
|
goto end;
|
|
}
|
|
if (!ivhex) {
|
|
fprintf(stderr, "gmssl %s: option `-iv` missing\n", prog);
|
|
goto end;
|
|
}
|
|
|
|
if (enc) {
|
|
if (sm4_cfb_encrypt_init(&ctx, sbytes, key, iv) != 1) {
|
|
error_print();
|
|
goto end;
|
|
}
|
|
} else {
|
|
if (sm4_cfb_decrypt_init(&ctx, sbytes, key, iv) != 1) {
|
|
error_print();
|
|
goto end;
|
|
}
|
|
}
|
|
|
|
while ((inlen = fread(buf, 1, sizeof(buf), infp)) > 0) {
|
|
|
|
if (enc) {
|
|
if (sm4_cfb_encrypt_update(&ctx, buf, inlen, buf, &outlen) != 1) {
|
|
error_print();
|
|
goto end;
|
|
}
|
|
} else {
|
|
if (sm4_cfb_decrypt_update(&ctx, buf, inlen, buf, &outlen) != 1) {
|
|
error_print();
|
|
goto end;
|
|
}
|
|
}
|
|
|
|
if (fwrite(buf, 1, outlen, outfp) != outlen) {
|
|
fprintf(stderr, "gmssl %s: output failure : %s\n", prog, strerror(errno));
|
|
goto end;
|
|
}
|
|
}
|
|
|
|
if (enc) {
|
|
if (sm4_cfb_encrypt_finish(&ctx, buf, &outlen) != 1) {
|
|
error_print();
|
|
goto end;
|
|
}
|
|
} else {
|
|
if (sm4_cfb_decrypt_finish(&ctx, buf, &outlen) != 1) {
|
|
error_print();
|
|
goto end;
|
|
}
|
|
}
|
|
if (fwrite(buf, 1, outlen, outfp) != outlen) {
|
|
fprintf(stderr, "gmssl %s: output failure : %s\n", prog, strerror(errno));
|
|
goto end;
|
|
}
|
|
|
|
ret = 0;
|
|
|
|
end:
|
|
gmssl_secure_clear(key, sizeof(key));
|
|
gmssl_secure_clear(iv, sizeof(iv));
|
|
gmssl_secure_clear(&ctx, sizeof(ctx));
|
|
gmssl_secure_clear(buf, sizeof(buf));
|
|
if (infile && infp) fclose(infp);
|
|
if (outfile && outfp) fclose(outfp);
|
|
return ret;
|
|
}
|