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 | <group>
|
---|
49 | <arg choice="plain">--pkcs7</arg>
|
---|
50 | <arg choice="plain">--no-pkcs7</arg>
|
---|
51 | </group>
|
---|
52 | <arg>--intermediate-cert=<replaceable>file</replaceable></arg>
|
---|
53 | <arg>--force</arg>
|
---|
54 | <arg>--out-cert</arg>
|
---|
55 | <arg>--dry-run</arg>
|
---|
56 | </cmdsynopsis>
|
---|
57 | </refsynopsisdiv>
|
---|
58 |
|
---|
59 | <refsect1>
|
---|
60 | <title>Description</title>
|
---|
61 | <para>
|
---|
62 | The <command>VBoxManage signova</command> command adds a digital
|
---|
63 | signature to an OVA file.
|
---|
64 | </para>
|
---|
65 | <!-- Add more description here -->
|
---|
66 | <variablelist>
|
---|
67 | <varlistentry>
|
---|
68 | <term><replaceable>ova</replaceable></term>
|
---|
69 | <listitem><para>The OVA file to sign.</para></listitem>
|
---|
70 | </varlistentry>
|
---|
71 | <varlistentry>
|
---|
72 | <term><option>--certificate=<replaceable>file</replaceable></option></term>
|
---|
73 | <listitem><para>File containing the certificate that the OVA should be
|
---|
74 | signed with. This can either be in PEM format (base64) or DER (binary),
|
---|
75 | the command will detect which.</para></listitem>
|
---|
76 | </varlistentry>
|
---|
77 | <varlistentry>
|
---|
78 | <term><option>--private-key=<replaceable>file</replaceable></option></term>
|
---|
79 | <listitem><para>The file containing the private key. This can either be
|
---|
80 | in PEM (base64) or DER (binary) format, the command will detect
|
---|
81 | which.</para></listitem>
|
---|
82 | </varlistentry>
|
---|
83 | <varlistentry>
|
---|
84 | <term><option>--private-key-password-file=<replaceable>password-file</replaceable></option></term>
|
---|
85 | <listitem><para>File containing the private key password.</para></listitem>
|
---|
86 | </varlistentry>
|
---|
87 | <varlistentry>
|
---|
88 | <term><option>--private-key-password=<replaceable>password</replaceable></option></term>
|
---|
89 | <listitem><para>The private key password. <!-- add warning about visibility --> </para></listitem>
|
---|
90 | </varlistentry>
|
---|
91 | <varlistentry>
|
---|
92 | <term><option>--pkcs7</option>, <option>--no-pkcs7</option></term>
|
---|
93 | <listitem><para>Enables or disables (default) the creation of an additional
|
---|
94 | PKCS#7 signature.</para></listitem>
|
---|
95 | </varlistentry>
|
---|
96 | <varlistentry>
|
---|
97 | <term><option>--intermediate-cert=<replaceable>file</replaceable></option></term>
|
---|
98 | <listitem><para>File containing an intermediary certificate that should be
|
---|
99 | included in the optional PKCS#7 signature. Like the others, the file can
|
---|
100 | either be in PEM or DER format. This option can be repeated to add
|
---|
101 | multiple intermediate certificates.</para></listitem>
|
---|
102 | </varlistentry>
|
---|
103 | <varlistentry>
|
---|
104 | <term><option>--force</option></term>
|
---|
105 | <listitem><para>Overwrite existing signature if present. The default
|
---|
106 | behaviour is to fail if the OVA is already signed.</para></listitem>
|
---|
107 | </varlistentry>
|
---|
108 |
|
---|
109 | <varlistentry>
|
---|
110 | <term><option>--out-cert</option>, <option>--dry-run</option></term>
|
---|
111 | <listitem><para>Debugging options that could be removed at any time.</para></listitem>
|
---|
112 | </varlistentry>
|
---|
113 | </variablelist>
|
---|
114 | </refsect1>
|
---|
115 | </refentry>
|
---|
116 |
|
---|