VirtualBox

source: vbox/trunk/doc/manual/en_US/man_VBoxManage-signova.xml@ 91099

Last change on this file since 91099 was 87075, checked in by vboxsync, 4 years ago

doc/manual: whitespace fixing in man pages

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.8 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 manpage, user manual, usage: VBoxManage signova
4
5 Copyright (C) 2006-2020 Oracle Corporation
6
7 This file is part of VirtualBox Open Source Edition (OSE), as
8 available from http://www.virtualbox.org. This file is free software;
9 you can redistribute it and/or modify it under the terms of the GNU
10 General Public License (GPL) as published by the Free Software
11 Foundation, in version 2 as it comes in the "COPYING" file of the
12 VirtualBox OSE distribution. VirtualBox OSE is distributed in the
13 hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
14 -->
15<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
16 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd"[
17<!ENTITY % all.entities SYSTEM "all-entities.ent">
18%all.entities;
19]>
20<refentry id="vboxmanage-signova" lang="en">
21 <refentryinfo>
22 <pubdate>May 2020</pubdate>
23 <title>VBoxManage signova</title>
24 </refentryinfo>
25
26 <refmeta>
27 <refentrytitle>VBoxManage-signova</refentrytitle>
28 <manvolnum>1</manvolnum>
29 </refmeta>
30
31 <refnamediv>
32 <refname>VBoxManage-signova</refname>
33 <refpurpose>Digitally sign an OVA</refpurpose>
34 <refclass>Oracle VM VirtualBox</refclass>
35 </refnamediv>
36
37 <refsynopsisdiv>
38 <cmdsynopsis id="synopsis-vboxmanage-signova">
39<!-- The 'id' is mandatory and must start with 'synopsis-'. -->
40 <command>VBoxManage signova</command>
41 <arg choice="req"><replaceable>ova</replaceable></arg>
42 <arg choice="req">--certificate=<replaceable>file</replaceable></arg>
43 <arg choice="req">--private-key=<replaceable>file</replaceable></arg>
44 <group>
45 <arg choice="plain">--private-key-password-file=<replaceable>password-file</replaceable></arg>
46 <arg choice="plain">--private-key-password=<replaceable>password</replaceable></arg>
47 </group>
48 <arg>--digest-type=<replaceable>type</replaceable></arg>
49 <group>
50 <arg choice="plain">--pkcs7</arg>
51 <arg choice="plain">--no-pkcs7</arg>
52 </group>
53 <arg>--intermediate-cert=<replaceable>file</replaceable></arg>
54 <arg>--force</arg>
55 <arg>--verbose</arg>
56 <arg>--quiet</arg>
57 <arg>--dry-run</arg>
58 </cmdsynopsis>
59 </refsynopsisdiv>
60
61 <refsect1>
62 <title>Description</title>
63 <para>
64 The <command>VBoxManage signova</command> command adds a digital
65 signature to an OVA file.
66 </para>
67 <!-- Add more description here -->
68 <variablelist>
69 <varlistentry>
70 <term><replaceable>ova</replaceable></term>
71 <listitem><para>The OVA file to sign.</para></listitem>
72 </varlistentry>
73 <varlistentry>
74 <term><option>--certificate=<replaceable>file</replaceable></option></term>
75 <listitem><para>File containing the certificate that the OVA should be
76 signed with. This can either be in PEM format (base64) or DER (binary),
77 the command will detect which.</para></listitem>
78 </varlistentry>
79 <varlistentry>
80 <term><option>--private-key=<replaceable>file</replaceable></option></term>
81 <listitem><para>The file containing the private key. This can either be
82 in PEM (base64) or DER (binary) format, the command will detect
83 which.</para></listitem>
84 </varlistentry>
85 <varlistentry>
86 <term><option>--private-key-password-file=<replaceable>password-file</replaceable></option></term>
87 <listitem><para>File containing the private key password.</para></listitem>
88 </varlistentry>
89 <varlistentry>
90 <term><option>--private-key-password=<replaceable>password</replaceable></option></term>
91 <listitem><para>The private key password. <!-- add warning about visibility --> </para></listitem>
92 </varlistentry>
93 <varlistentry>
94 <term><option>--digest-type=<replaceable>type</replaceable></option></term>
95 <listitem>
96 <para>Select the cryptographic digest algorithm to use in the
97 signing. Possible values: SHA-256 (default), SHA-512 and SHA-1.</para>
98 <para>Some older versions of OVFTool and other VMware produces may
99 require <option>--digest-type=sha-1</option> to accept the OVA.</para>
100 </listitem>
101 </varlistentry>
102 <varlistentry>
103 <term><option>--pkcs7</option>, <option>--no-pkcs7</option></term>
104 <listitem><para>Enables or disables the creation of an additional
105 PKCS#7/CMS signature. This is enabled by default.</para></listitem>
106 </varlistentry>
107 <varlistentry>
108 <term><option>--intermediate-cert=<replaceable>file</replaceable></option></term>
109 <listitem><para>File containing an intermediary certificate that should be
110 included in the optional PKCS#7/CMS signature. Like the others, the file can
111 either be in PEM or DER format. This option can be repeated to add
112 multiple intermediate certificates. This option implies the
113 <option>--pkcs7</option> option.</para></listitem>
114 </varlistentry>
115 <varlistentry>
116 <term><option>--force</option></term>
117 <listitem><para>Overwrite existing signature if present. The default
118 behaviour is to fail if the OVA is already signed.</para></listitem>
119 </varlistentry>
120 <varlistentry>
121 <term><option>--dry-run</option></term>
122 <listitem><para>Do not actually modify the OVA, just test-run the signing operation.</para></listitem>
123 </varlistentry>
124 <varlistentry>
125 <term><option>-v</option>, <option>--verbose</option>, <option>-q</option>, <option>--quiet</option></term>
126 <listitem><para>Controls the verbositity of the command execution. The
127 <option>--verbose</option> option can be used multiple times to get more output.
128 </para></listitem>
129 </varlistentry>
130 </variablelist>
131 </refsect1>
132</refentry>
133
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette