summaryrefslogtreecommitdiff
path: root/package/dtd
diff options
context:
space:
mode:
authorMartin Gallwey <mtg@openoffice.org>2001-04-27 13:56:07 +0000
committerMartin Gallwey <mtg@openoffice.org>2001-04-27 13:56:07 +0000
commitfa2de5099c00fabb952c039269f23f7f3689c586 (patch)
tree0476064e5fcd36451648736e4dcb6fccafd1f062 /package/dtd
parent7ddd39239c37d8a9b58f4c8fc17ff2b47fe0a20b (diff)
#86409# Support encryption in package files + a couple of optimisations
Diffstat (limited to 'package/dtd')
-rw-r--r--package/dtd/Manifest.dtd11
1 files changed, 9 insertions, 2 deletions
diff --git a/package/dtd/Manifest.dtd b/package/dtd/Manifest.dtd
index 087c8441b61a..a55dd7169ed9 100644
--- a/package/dtd/Manifest.dtd
+++ b/package/dtd/Manifest.dtd
@@ -1,5 +1,5 @@
<!--
- $Id: Manifest.dtd,v 1.5 2001-03-19 12:27:07 mtg Exp $
+ $Id: Manifest.dtd,v 1.6 2001-04-27 14:56:04 mtg Exp $
The Contents of this file are made available subject to the terms of
either of the following licenses
@@ -54,8 +54,15 @@
-->
<!ELEMENT manifest:manifest (manifest:file-entry+)>
<!ATTLIST manifest:manifest xmlns:manifest CDATA #FIXED "http://openoffice.org/2001/manifest">
-<!ELEMENT manifest:file-entry EMPTY>
+<!ELEMENT manifest:file-entry (manifest:encryption-data?)>
<!ATTLIST manifest:file-entry
manifest:full-path CDATA #REQUIRED
manifest:media-type CDATA #REQUIRED
>
+<!ELEMENT manifest:encryption-data (manifest:initialisation-vector?)>
+<!ATTLIST manifest:encryption-data
+ manifest:algorithm CDATA #REQUIRED
+ manifest:salt CDATA #REQUIRED
+ manifest:iteration-count CDATA #REQUIRED>
+<!-- the initialisation-vector should be base-64 encoded -->
+<!ELEMENT manifest:initialisation-vector (#PCDATA)>