ogvt/ogvt.1

48 lines
1.6 KiB
Groff

.\" $OpenBSD$
.\"
.\" Copyright (c) 2020 Aaron Bieber <abieber@openbsd.org>
.\"
.\" Permission to use, copy, modify, and distribute this software for any
.\" purpose with or without fee is hereby granted, provided that the above
.\" copyright notice and this permission notice appear in all copies.
.\"
.\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
.\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
.\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
.\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
.\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
.\"
.Dd $Mdocdate: February 09 2020 $
.Dt OGVT 1
.Os
.Sh NAME
.Nm ogvt
.Nd simple gnupgp-signature verification tool
.Sh SYNOPSIS
.Nm
.Op Fl file Ar signed file
.Op Fl pub Ar public key of signer
.Op Fl sig Ar signature of file
.Sh DESCRIPTION
.Nm
is a simple tool that can be used to validate pgp signatures.
.Pp
The options are as follows:
.Bl -tag -width Ds
.It Fl file Ar file
Specifies the path to the signed file.
.It Fl pub Ar file
Specifies the path to the signers public key file.
.It Fl sig Ar file
Specifies the path to the signature file.
This can be armored or not.
Armored files are expected to have a .asc suffix.
Non-armored files are expected to have either a .gpg or .sig suffix.
.El
.Sh AUTHORS
.Nm
was written by
.An "Aaron Bieber" Aq abieber@openbsd.org