xref: /aoo41x/main/package/dtd/Manifest.dtd (revision dde34420)
1*dde34420SAndrew Rist<!--***********************************************************
2*dde34420SAndrew Rist *
3*dde34420SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
4*dde34420SAndrew Rist * or more contributor license agreements.  See the NOTICE file
5*dde34420SAndrew Rist * distributed with this work for additional information
6*dde34420SAndrew Rist * regarding copyright ownership.  The ASF licenses this file
7*dde34420SAndrew Rist * to you under the Apache License, Version 2.0 (the
8*dde34420SAndrew Rist * "License"); you may not use this file except in compliance
9*dde34420SAndrew Rist * with the License.  You may obtain a copy of the License at
10*dde34420SAndrew Rist *
11*dde34420SAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12*dde34420SAndrew Rist *
13*dde34420SAndrew Rist * Unless required by applicable law or agreed to in writing,
14*dde34420SAndrew Rist * software distributed under the License is distributed on an
15*dde34420SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*dde34420SAndrew Rist * KIND, either express or implied.  See the License for the
17*dde34420SAndrew Rist * specific language governing permissions and limitations
18*dde34420SAndrew Rist * under the License.
19*dde34420SAndrew Rist *
20*dde34420SAndrew Rist ***********************************************************-->
21cdf0e10cSrcweir
22cdf0e10cSrcweir
23cdf0e10cSrcweir<!ELEMENT manifest:manifest (manifest:file-entry+)>
24cdf0e10cSrcweir<!ATTLIST manifest:manifest xmlns:manifest CDATA #FIXED "http://openoffice.org/2001/manifest">
25cdf0e10cSrcweir
26cdf0e10cSrcweir<!ELEMENT manifest:file-entry (manifest:encryption-data?)>
27cdf0e10cSrcweir<!-- manifest:size is usually only specified for encrypted entries -->
28cdf0e10cSrcweir<!ATTLIST manifest:file-entry
29cdf0e10cSrcweir	manifest:full-path CDATA #REQUIRED
30cdf0e10cSrcweir	manifest:size CDATA #IMPLIED
31cdf0e10cSrcweir	manifest:media-type CDATA #REQUIRED
32cdf0e10cSrcweir>
33cdf0e10cSrcweir
34cdf0e10cSrcweir<!ELEMENT manifest:encryption-data (manifest:algorithm,manifest:key-derivation)>
35cdf0e10cSrcweir<!ATTLIST manifest:encryption-data
36cdf0e10cSrcweir	manifest:checksum-type CDATA #REQUIRED
37cdf0e10cSrcweir	manifest:checksum CDATA #REQUIRED >
38cdf0e10cSrcweir<!-- algorithm-name specifies the name of the algorithm used to encrypt
39cdf0e10cSrcweir	 the stream, for example Blowfish
40cdf0e10cSrcweir	 manifest:initialisation-vector is stored encoded in Base64 -->
41cdf0e10cSrcweir<!ELEMENT manifest:algorithm EMPTY>
42cdf0e10cSrcweir<!ATTLIST manifest:algorithm
43cdf0e10cSrcweir	manifest:algorithm-name CDATA #REQUIRED
44cdf0e10cSrcweir	manifest:initialisation-vector CDATA #REQUIRED>
45cdf0e10cSrcweir
46cdf0e10cSrcweir<!ELEMENT manifest:key-derivation EMPTY>
47cdf0e10cSrcweir<!-- manifest:key-derivation-name specifies the name of the algorithm used to derive
48cdf0e10cSrcweir	 the key, for example PBKDF2 (see rfc 2898 )
49cdf0e10cSrcweir	 manifest:salt is stored encoded in Base64 -->
50cdf0e10cSrcweir<!ATTLIST manifest:key-derivation
51cdf0e10cSrcweir	manifest:key-derivation-name CDATA #REQUIRED
52cdf0e10cSrcweir	manifest:salt CDATA #REQUIRED
53cdf0e10cSrcweir	manifest:iteration-count CDATA #REQUIRED>
54cdf0e10cSrcweir
55