mirror of
https://github.com/guanzhi/GmSSL.git
synced 2026-08-07 12:33:39 +08:00
remove some tools
This commit is contained in:
192
tools/digest.c
192
tools/digest.c
@@ -1,192 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright 2014-2021 The GmSSL Project Authors. 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.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
* See the License for the specific language governing permissions and
|
|
||||||
* limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include <stdio.h>
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <string.h>
|
|
||||||
#include <gmssl/digest.h>
|
|
||||||
|
|
||||||
#define FORMAT_HEX 1
|
|
||||||
#define FORMAT_BIN 2
|
|
||||||
|
|
||||||
|
|
||||||
void print_usage(FILE *out, const char *prog)
|
|
||||||
{
|
|
||||||
fprintf(out, "Usage: %s command [options] ...\n", prog);
|
|
||||||
fprintf(out, "\n");
|
|
||||||
fprintf(out, "Commands:\n");
|
|
||||||
fprintf(out, " -help print the usage message\n");
|
|
||||||
fprintf(out, " -sm3 use SM3\n");
|
|
||||||
fprintf(out, " -md5 use MD5\n");
|
|
||||||
fprintf(out, " -sha1 use SHA-1\n");
|
|
||||||
fprintf(out, " -sha224 use SHA-224\n");
|
|
||||||
fprintf(out, " -sha256 use SHA-256\n");
|
|
||||||
fprintf(out, " -sha384 use SHA-384\n");
|
|
||||||
fprintf(out, " -sha512 use SHA-512\n");
|
|
||||||
fprintf(out, " -hex generate hex output\n");
|
|
||||||
fprintf(out, " -binary generate binary output\n");
|
|
||||||
fprintf(out, " -out file set output filename\n");
|
|
||||||
}
|
|
||||||
|
|
||||||
int main(int argc, char **argv)
|
|
||||||
{
|
|
||||||
int ret = -1;
|
|
||||||
char *prog = argv[0];
|
|
||||||
int help = 0;
|
|
||||||
const DIGEST *digest = NULL;
|
|
||||||
int format = FORMAT_HEX;
|
|
||||||
char *infile = NULL;
|
|
||||||
char *outfile = NULL;
|
|
||||||
FILE *in = stdin;
|
|
||||||
FILE *out = stdout;
|
|
||||||
|
|
||||||
DIGEST_CTX ctx;
|
|
||||||
unsigned char dgst[64];
|
|
||||||
unsigned char buf[4096];
|
|
||||||
size_t len;
|
|
||||||
size_t dgstlen, i;
|
|
||||||
|
|
||||||
argc--;
|
|
||||||
argv++;
|
|
||||||
while (argc >= 1) {
|
|
||||||
if (!strcmp(*argv, "-help")) {
|
|
||||||
print_usage(stdout, prog);
|
|
||||||
goto end;
|
|
||||||
|
|
||||||
} else if (!strcmp(*argv, "-sm3")) {
|
|
||||||
if (digest) goto bad;
|
|
||||||
digest = DIGEST_sm3();
|
|
||||||
|
|
||||||
} else if (!strcmp(*argv, "-md5")) {
|
|
||||||
if (digest) goto bad;
|
|
||||||
digest = DIGEST_md5();
|
|
||||||
|
|
||||||
} else if (!strcmp(*argv, "-sha1")) {
|
|
||||||
if (digest) goto bad;
|
|
||||||
digest = DIGEST_sha1();
|
|
||||||
|
|
||||||
} else if (!strcmp(*argv, "-sha224")) {
|
|
||||||
if (digest) goto bad;
|
|
||||||
digest = DIGEST_sha224();
|
|
||||||
|
|
||||||
} else if (!strcmp(*argv, "-sha256")) {
|
|
||||||
if (digest) goto bad;
|
|
||||||
digest = DIGEST_sha256();
|
|
||||||
|
|
||||||
} else if (!strcmp(*argv, "-sha384")) {
|
|
||||||
if (digest) goto bad;
|
|
||||||
digest = DIGEST_sha384();
|
|
||||||
|
|
||||||
} else if (!strcmp(*argv, "-sha512")) {
|
|
||||||
if (digest) goto bad;
|
|
||||||
digest = DIGEST_sha512();
|
|
||||||
|
|
||||||
} else if (!strcmp(*argv, "-hex")) {
|
|
||||||
format = FORMAT_HEX;
|
|
||||||
|
|
||||||
} else if (!strcmp(*argv, "-binary")) {
|
|
||||||
format = FORMAT_BIN;
|
|
||||||
|
|
||||||
} else if (!strcmp(*argv, "-out")) {
|
|
||||||
if (--argc < 1) goto bad;
|
|
||||||
outfile = *(++argv);
|
|
||||||
} else {
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
argc--;
|
|
||||||
argv++;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!digest) {
|
|
||||||
fprintf(stderr, "%s: digest algorithm not speicified\n", prog);
|
|
||||||
fprintf(stderr, "usage: %s -[sm2|sha224|sha256|sha384|sha512] ...\n", prog);
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (outfile) {
|
|
||||||
if (!(out = fopen(outfile, "wb"))) {
|
|
||||||
fprintf(stderr, "%s: can not open %s\n", prog, outfile);
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
digest_ctx_init(&ctx);
|
|
||||||
|
|
||||||
if (!argc) {
|
|
||||||
if (!digest_init(&ctx, digest)) {
|
|
||||||
goto end;
|
|
||||||
}
|
|
||||||
while ((len = fread(buf, 1, sizeof(buf), stdin)) > 0) {
|
|
||||||
if (!digest_update(&ctx, buf, len)) {
|
|
||||||
goto end;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (!digest_finish(&ctx, dgst, &len)) {
|
|
||||||
goto end;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (format == FORMAT_BIN) {
|
|
||||||
fwrite(dgst, 1, len, out);
|
|
||||||
} else {
|
|
||||||
for (i = 0; i < len; i++) {
|
|
||||||
printf("%02x", dgst[i]);
|
|
||||||
}
|
|
||||||
printf("\n");
|
|
||||||
}
|
|
||||||
|
|
||||||
ret = 0;
|
|
||||||
goto end;
|
|
||||||
}
|
|
||||||
|
|
||||||
// 多个输出文件,输出文件名和二进制输出有冲突
|
|
||||||
|
|
||||||
while (argc > 0) {
|
|
||||||
infile = *argv++;
|
|
||||||
if (!(in = fopen(infile, "rb"))) {
|
|
||||||
fprintf(stderr, "%s: can not open input file %s\n", prog, infile);
|
|
||||||
goto end;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!digest_init(&ctx, digest)) {
|
|
||||||
goto end;
|
|
||||||
}
|
|
||||||
while ((len = fread(buf, 1, sizeof(buf), in)) > 0) {
|
|
||||||
if (!digest_update(&ctx, buf, len)) {
|
|
||||||
goto end;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
fclose(in);
|
|
||||||
if (!digest_finish(&ctx, dgst, &dgstlen)) {
|
|
||||||
goto end;
|
|
||||||
}
|
|
||||||
|
|
||||||
for (i = 0; i < dgstlen; i++) {
|
|
||||||
printf("%02x", dgst[i]);
|
|
||||||
}
|
|
||||||
printf(" %s\n", infile);
|
|
||||||
argc--;
|
|
||||||
}
|
|
||||||
ret = 0;
|
|
||||||
goto end;
|
|
||||||
|
|
||||||
bad:
|
|
||||||
fprintf(stderr, "%s: commands should not be used together\n", prog);
|
|
||||||
end:
|
|
||||||
digest_ctx_cleanup(&ctx);
|
|
||||||
fclose(out);
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
166
tools/hmac.c
166
tools/hmac.c
@@ -1,166 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright 2014-2021 The GmSSL Project Authors. 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.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
* See the License for the specific language governing permissions and
|
|
||||||
* limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include <stdio.h>
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <string.h>
|
|
||||||
//#include <unistd.h>
|
|
||||||
#include <gmssl/digest.h>
|
|
||||||
|
|
||||||
#define FORMAT_HEX 1
|
|
||||||
#define FORMAT_BIN 2
|
|
||||||
|
|
||||||
|
|
||||||
void print_usage(FILE *out, const char *prog)
|
|
||||||
{
|
|
||||||
fprintf(out, "Usage: %s command [options] ...\n", prog);
|
|
||||||
fprintf(out, "\n");
|
|
||||||
fprintf(out, "Commands:\n");
|
|
||||||
fprintf(out, " -help print the usage message\n");
|
|
||||||
fprintf(out, " -digest algor print the usage message\n");
|
|
||||||
fprintf(out, " -key hex set the key in hex\n");
|
|
||||||
fprintf(out, " -hex generate hex output\n");
|
|
||||||
fprintf(out, " -binary generate binary output\n");
|
|
||||||
fprintf(out, " -out file set output filename\n");
|
|
||||||
}
|
|
||||||
|
|
||||||
int main(int argc, char **argv)
|
|
||||||
{
|
|
||||||
int ret = -1;
|
|
||||||
char *prog = argv[0];
|
|
||||||
int help = 0;
|
|
||||||
const DIGEST *digest = NULL;
|
|
||||||
int format = FORMAT_HEX;
|
|
||||||
char *infile = NULL;
|
|
||||||
char *outfile = NULL;
|
|
||||||
FILE *in = stdin;
|
|
||||||
FILE *out = stdout;
|
|
||||||
|
|
||||||
DIGEST_CTX ctx;
|
|
||||||
unsigned char dgst[64];
|
|
||||||
unsigned char buf[4096];
|
|
||||||
size_t len;
|
|
||||||
size_t dgstlen, i;
|
|
||||||
|
|
||||||
argc--;
|
|
||||||
argv++;
|
|
||||||
while (argc >= 1) {
|
|
||||||
if (!strcmp(*argv, "-help")) {
|
|
||||||
print_usage(stdout, prog);
|
|
||||||
goto end;
|
|
||||||
|
|
||||||
} else if (!strcmp(*argv, "-digest")) {
|
|
||||||
if (--argc < 1) goto bad;
|
|
||||||
algor = *(++argv);
|
|
||||||
|
|
||||||
} else if (!strcmp(*argv, "-key")) {
|
|
||||||
if (--argc < 1) goto bad;
|
|
||||||
algor = *(++argv);
|
|
||||||
|
|
||||||
} else if (!strcmp(*argv, "-hex")) {
|
|
||||||
format = FORMAT_HEX;
|
|
||||||
|
|
||||||
} else if (!strcmp(*argv, "-binary")) {
|
|
||||||
format = FORMAT_BIN;
|
|
||||||
|
|
||||||
} else if (!strcmp(*argv, "-out")) {
|
|
||||||
if (--argc < 1) goto bad;
|
|
||||||
outfile = *(++argv);
|
|
||||||
|
|
||||||
} else {
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
argc--;
|
|
||||||
argv++;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!algor) {
|
|
||||||
}
|
|
||||||
|
|
||||||
if (outfile) {
|
|
||||||
if (!(out = fopen(outfile, "wb"))) {
|
|
||||||
fprintf(stderr, "%s: can not open %s\n", prog, outfile);
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
digest_ctx_init(&ctx);
|
|
||||||
|
|
||||||
if (!argc) {
|
|
||||||
if (!digest_init(&ctx, digest)) {
|
|
||||||
goto end;
|
|
||||||
}
|
|
||||||
while ((len = fread(buf, 1, sizeof(buf), stdin)) > 0) {
|
|
||||||
if (!digest_update(&ctx, buf, len)) {
|
|
||||||
goto end;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (!digest_finish(&ctx, dgst, &len)) {
|
|
||||||
goto end;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (format == FORMAT_BIN) {
|
|
||||||
fwrite(dgst, 1, len, out);
|
|
||||||
} else {
|
|
||||||
for (i = 0; i < len; i++) {
|
|
||||||
printf("%02x", dgst[i]);
|
|
||||||
}
|
|
||||||
printf("\n");
|
|
||||||
}
|
|
||||||
|
|
||||||
ret = 0;
|
|
||||||
goto end;
|
|
||||||
}
|
|
||||||
|
|
||||||
// 多个输出文件,输出文件名和二进制输出有冲突
|
|
||||||
|
|
||||||
while (argc > 0) {
|
|
||||||
infile = *argv++;
|
|
||||||
if (!(in = fopen(infile, "rb"))) {
|
|
||||||
fprintf(stderr, "%s: can not open input file %s\n", prog, infile);
|
|
||||||
goto end;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!digest_init(&ctx, digest)) {
|
|
||||||
goto end;
|
|
||||||
}
|
|
||||||
while ((len = fread(buf, 1, sizeof(buf), in)) > 0) {
|
|
||||||
if (!digest_update(&ctx, buf, len)) {
|
|
||||||
goto end;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
fclose(in);
|
|
||||||
if (!digest_finish(&ctx, dgst, &dgstlen)) {
|
|
||||||
goto end;
|
|
||||||
}
|
|
||||||
|
|
||||||
for (i = 0; i < dgstlen; i++) {
|
|
||||||
printf("%02x", dgst[i]);
|
|
||||||
}
|
|
||||||
printf(" %s\n", infile);
|
|
||||||
argc--;
|
|
||||||
}
|
|
||||||
ret = 0;
|
|
||||||
goto end;
|
|
||||||
|
|
||||||
bad:
|
|
||||||
fprintf(stderr, "%s: commands should not be used together\n", prog);
|
|
||||||
end:
|
|
||||||
digest_ctx_cleanup(&ctx);
|
|
||||||
fclose(out);
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
@@ -1,44 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright 2014-2021 The GmSSL Project Authors. 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.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
* See the License for the specific language governing permissions and
|
|
||||||
* limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include <stdio.h>
|
|
||||||
#include <string.h>
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <unistd.h>
|
|
||||||
#include <gmssl/sm2.h>
|
|
||||||
#include <gmssl/pem.h>
|
|
||||||
#include <gmssl/pkcs8.h>
|
|
||||||
#include <gmssl/error.h>
|
|
||||||
|
|
||||||
int main(void)
|
|
||||||
{
|
|
||||||
SM2_KEY key;
|
|
||||||
char *pass = NULL;
|
|
||||||
char passbuf[64] = {0};
|
|
||||||
|
|
||||||
pass = getpass("Encryption Password : ");
|
|
||||||
strncpy(passbuf, pass, sizeof(passbuf));
|
|
||||||
pass = getpass("Encryption Password (Again) : ");
|
|
||||||
if (strcmp(passbuf, pass) != 0) {
|
|
||||||
fprintf(stderr, "error: passwords not match\n");
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
sm2_keygen(&key);
|
|
||||||
sm2_enced_private_key_info_to_pem(&key, pass, stdout);
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
@@ -1,53 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright 2014-2021 The GmSSL Project Authors. 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.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
* See the License for the specific language governing permissions and
|
|
||||||
* limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
#include <stdio.h>
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <string.h>
|
|
||||||
#include <libgen.h>
|
|
||||||
#include <openmp.h>
|
|
||||||
#include <gmssl/sm4.h>
|
|
||||||
|
|
||||||
|
|
||||||
int main(int argc, char **argv)
|
|
||||||
{
|
|
||||||
SM4_KEY sm4_key;
|
|
||||||
unsigned char user_key[16] = {
|
|
||||||
0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88,
|
|
||||||
0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88,
|
|
||||||
};
|
|
||||||
size_t buflen = SM4_BLOCK_SIZE * 8 * 3 * 1000 * 1000;
|
|
||||||
unsigned char *buf = NULL;
|
|
||||||
unsigned char *p;
|
|
||||||
int i;
|
|
||||||
|
|
||||||
|
|
||||||
if (!(buf = (unsigned char *)malloc(buflen))) {
|
|
||||||
fprintf(stderr, "malloc failed\n");
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
sm4_set_encrypt_key(&sm4_key, user_key);
|
|
||||||
|
|
||||||
#pragma omp parallel for
|
|
||||||
for (i = 0, p = buf; i < buflen/(SM4_BLOCK_SIZE * 16); i++, p += SM4_BLOCK_SIZE * 16) {
|
|
||||||
sm4_encrypt_16blocks(&sms4_key, p, p);
|
|
||||||
}
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
Reference in New Issue
Block a user