xbps-digest(1): new utility that replaces "xbps-uhelper digest".
See the manual page: XBPS-DIGEST(1) General Commands Manual XBPS-DIGEST(1) NAME xbps-digest - XBPS utility to generate message digests SYNOPSIS xbps-digest [OPTIONS] [FILE] [FILE+N] DESCRIPTION The xbps-digest utility generates message digests for specified FILE or stdin if unset. OPTIONS -m, --mode mode Sets the message digest mode. Supported: sha256. If unset, defaults to sha256. -h, --help Show the help message. -V, --version Show the version information. SEE ALSO xbps.d(5), xbps-checkvers(1), xbps-create(1), xbps-dgraph(1), xbps-fbulk(1), xbps-install(1), xbps-pkgdb(1), xbps-query(1), xbps-reconfigure(1), xbps-remove(1), xbps-rindex(1), xbps-uchroot(1), xbps-uunshare(1) AUTHORS Juan Romero Pardines <xtraeme@gmail.com> BUGS Probably, but I try to make this not happen. Use it under your own responsibility and enjoy your life. Report bugs at https://github.com/void-linux/xbps/issues June 12, 2019 Signed-off-by: Juan RP <xtraeme@gmail.com>
This commit is contained in:
committed by
Duncan Overbruck
parent
cf4f0f4aa0
commit
9cda7ef72a
7
bin/xbps-digest/Makefile
Normal file
7
bin/xbps-digest/Makefile
Normal file
@@ -0,0 +1,7 @@
|
||||
TOPDIR = ../..
|
||||
-include $(TOPDIR)/config.mk
|
||||
|
||||
BIN = xbps-digest
|
||||
OBJS = main.o
|
||||
|
||||
include $(TOPDIR)/mk/prog.mk
|
107
bin/xbps-digest/main.c
Normal file
107
bin/xbps-digest/main.c
Normal file
@@ -0,0 +1,107 @@
|
||||
/*-
|
||||
* Copyright (c) 2019 Juan Romero Pardines.
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
||||
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
||||
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
||||
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||||
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <strings.h>
|
||||
#include <errno.h>
|
||||
#include <unistd.h>
|
||||
#include <getopt.h>
|
||||
|
||||
#include <xbps.h>
|
||||
|
||||
static void __attribute__((noreturn))
|
||||
usage(void)
|
||||
{
|
||||
fprintf(stdout,
|
||||
"Usage: xbps-digest [options] [file] [file+N]\n"
|
||||
"\n"
|
||||
"OPTIONS:\n"
|
||||
" -h\t\tShow usage()\n"
|
||||
" -m <sha256>\tSelects the digest mode, sha256 (default)\n"
|
||||
" -V\t\tPrints the xbps release version\n"
|
||||
"\n"
|
||||
"NOTES\n"
|
||||
" If [file] not set, reads from stdin.\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
int
|
||||
main(int argc, char **argv)
|
||||
{
|
||||
int c;
|
||||
char *hash = NULL;
|
||||
const char *mode = NULL, *progname = argv[0];
|
||||
const struct option longopts[] = {
|
||||
{ NULL, 0, NULL, 0 }
|
||||
};
|
||||
|
||||
while ((c = getopt_long(argc, argv, "m:hV", longopts, NULL)) != -1) {
|
||||
switch (c) {
|
||||
case 'm':
|
||||
mode = optarg;
|
||||
break;
|
||||
case 'V':
|
||||
printf("%s\n", XBPS_RELVER);
|
||||
exit(EXIT_SUCCESS);
|
||||
case '?':
|
||||
case 'h':
|
||||
default:
|
||||
usage();
|
||||
}
|
||||
}
|
||||
|
||||
argc -= optind;
|
||||
argv += optind;
|
||||
|
||||
if (mode && strcmp(mode, "sha256")) {
|
||||
/* sha256 is the only supported mode currently */
|
||||
fprintf(stderr, "%s: unsupported digest mode\n", progname);
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
if (argc < 1) {
|
||||
hash = xbps_file_hash("/dev/stdin");
|
||||
if (hash == NULL)
|
||||
exit(EXIT_FAILURE);
|
||||
|
||||
printf("%s\n", hash);
|
||||
free(hash);
|
||||
} else {
|
||||
for (int i = 0; i < argc; i++) {
|
||||
hash = xbps_file_hash(argv[i]);
|
||||
if (hash == NULL) {
|
||||
fprintf(stderr,
|
||||
"%s: couldn't get hash for %s (%s)\n",
|
||||
progname, argv[i], strerror(errno));
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
printf("%s\n", hash);
|
||||
free(hash);
|
||||
}
|
||||
}
|
||||
exit(EXIT_SUCCESS);
|
||||
}
|
51
bin/xbps-digest/xbps-digest.1
Normal file
51
bin/xbps-digest/xbps-digest.1
Normal file
@@ -0,0 +1,51 @@
|
||||
.Dd June 12, 2019
|
||||
.Dt XBPS-DIGEST 1
|
||||
.Sh NAME
|
||||
.Nm xbps-digest
|
||||
.Nd XBPS utility to generate message digests
|
||||
.Sh SYNOPSIS
|
||||
.Nm xbps-digest
|
||||
.Op OPTIONS
|
||||
.Op FILE
|
||||
.Op FILE+N
|
||||
.Sh DESCRIPTION
|
||||
The
|
||||
.Nm
|
||||
utility generates message digests for specified
|
||||
.Ar FILE
|
||||
or
|
||||
.Ar stdin
|
||||
if unset.
|
||||
.Sh OPTIONS
|
||||
.Bl -tag -width -x
|
||||
.It Fl m, Fl -mode Ar mode
|
||||
Sets the message digest mode. Supported:
|
||||
.Ar sha256 .
|
||||
If unset, defaults to
|
||||
.Ar sha256 .
|
||||
.It Fl h, Fl -help
|
||||
Show the help message.
|
||||
.It Fl V, Fl -version
|
||||
Show the version information.
|
||||
.El
|
||||
.Sh SEE ALSO
|
||||
.Xr xbps.d 5 ,
|
||||
.Xr xbps-checkvers 1 ,
|
||||
.Xr xbps-create 1 ,
|
||||
.Xr xbps-dgraph 1 ,
|
||||
.Xr xbps-fbulk 1 ,
|
||||
.Xr xbps-install 1 ,
|
||||
.Xr xbps-pkgdb 1 ,
|
||||
.Xr xbps-query 1 ,
|
||||
.Xr xbps-reconfigure 1 ,
|
||||
.Xr xbps-remove 1 ,
|
||||
.Xr xbps-rindex 1 ,
|
||||
.Xr xbps-uchroot 1 ,
|
||||
.Xr xbps-uunshare 1
|
||||
.Sh AUTHORS
|
||||
.An Juan Romero Pardines <xtraeme@gmail.com>
|
||||
.Sh BUGS
|
||||
Probably, but I try to make this not happen. Use it under your own
|
||||
responsibility and enjoy your life.
|
||||
.Pp
|
||||
Report bugs at https://github.com/void-linux/xbps/issues
|
Reference in New Issue
Block a user