xref: /AOO41X/main/offapi/com/sun/star/xml/crypto/XXMLEncryptionTemplate.idl (revision cdf0e10c4e3984b49a9502b011690b615761d4a3)
1*cdf0e10cSrcweir/*************************************************************************
2*cdf0e10cSrcweir *
3*cdf0e10cSrcweir * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4*cdf0e10cSrcweir *
5*cdf0e10cSrcweir * Copyright 2000, 2010 Oracle and/or its affiliates.
6*cdf0e10cSrcweir *
7*cdf0e10cSrcweir * OpenOffice.org - a multi-platform office productivity suite
8*cdf0e10cSrcweir *
9*cdf0e10cSrcweir * This file is part of OpenOffice.org.
10*cdf0e10cSrcweir *
11*cdf0e10cSrcweir * OpenOffice.org is free software: you can redistribute it and/or modify
12*cdf0e10cSrcweir * it under the terms of the GNU Lesser General Public License version 3
13*cdf0e10cSrcweir * only, as published by the Free Software Foundation.
14*cdf0e10cSrcweir *
15*cdf0e10cSrcweir * OpenOffice.org is distributed in the hope that it will be useful,
16*cdf0e10cSrcweir * but WITHOUT ANY WARRANTY; without even the implied warranty of
17*cdf0e10cSrcweir * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18*cdf0e10cSrcweir * GNU Lesser General Public License version 3 for more details
19*cdf0e10cSrcweir * (a copy is included in the LICENSE file that accompanied this code).
20*cdf0e10cSrcweir *
21*cdf0e10cSrcweir * You should have received a copy of the GNU Lesser General Public License
22*cdf0e10cSrcweir * version 3 along with OpenOffice.org.  If not, see
23*cdf0e10cSrcweir * <http://www.openoffice.org/license.html>
24*cdf0e10cSrcweir * for a copy of the LGPLv3 License.
25*cdf0e10cSrcweir *
26*cdf0e10cSrcweir ************************************************************************/
27*cdf0e10cSrcweir
28*cdf0e10cSrcweir//i20156 - new file for xmlsecurity module
29*cdf0e10cSrcweir
30*cdf0e10cSrcweir/** -- idl definition -- **/
31*cdf0e10cSrcweir
32*cdf0e10cSrcweir#ifndef __com_sun_star_xml_crypto_xxmlencryptiontemplate_idl_
33*cdf0e10cSrcweir#define __com_sun_star_xml_crypto_xxmlencryptiontemplate_idl_
34*cdf0e10cSrcweir
35*cdf0e10cSrcweir#include <com/sun/star/uno/XInterface.idl>
36*cdf0e10cSrcweir#include <com/sun/star/lang/IllegalArgumentException.idl>
37*cdf0e10cSrcweir
38*cdf0e10cSrcweir#include <com/sun/star/xml/wrapper/XXMLElementWrapper.idl>
39*cdf0e10cSrcweir#include <com/sun/star/xml/crypto/XXMLSecurityTemplate.idl>
40*cdf0e10cSrcweir
41*cdf0e10cSrcweirmodule com { module sun { module star { module xml { module crypto {
42*cdf0e10cSrcweir
43*cdf0e10cSrcweir/**
44*cdf0e10cSrcweir * Interface of XML encryption template
45*cdf0e10cSrcweir *
46*cdf0e10cSrcweir * <p>This interface represents a encryption template, which is the same as the
47*cdf0e10cSrcweir * desired xml encryption element[ EncryptedType ] but some of the nodes may be
48*cdf0e10cSrcweir * empty. The empty entities include CipherValue, which is a subset of
49*cdf0e10cSrcweir * EncryptedData or EncryptedKey. Empty entities are not allowed in a encryption
50*cdf0e10cSrcweir * template when performing decryption.</p>
51*cdf0e10cSrcweir *
52*cdf0e10cSrcweir * <p>In some cases, the encrypter or decrypter can dertermine and locate the
53*cdf0e10cSrcweir * EncrytedKey from the encryption template by dereference the RetrievalMethod
54*cdf0e10cSrcweir * inside EncryptedData.</p>
55*cdf0e10cSrcweir *
56*cdf0e10cSrcweir * <p>In some cases, the EncryptedKey need to be clearly pointed out by the
57*cdf0e10cSrcweir * encryption template.</p>
58*cdf0e10cSrcweir *
59*cdf0e10cSrcweir * <p>With the help of encryption context, the encrypter or decrypter specifies
60*cdf0e10cSrcweir * the key from the KeyInfo in the encryption template.</p>
61*cdf0e10cSrcweir *
62*cdf0e10cSrcweir *
63*cdf0e10cSrcweir * <p>It isn't a good method to set the EncryptedKey here. In general, there is
64*cdf0e10cSrcweir * a RetrievalMethod in EncryptedData by which we can get the EncryptedKey.
65*cdf0e10cSrcweir *
66*cdf0e10cSrcweir * And some times, in the low level, it is hard to determine what the key is
67*cdf0e10cSrcweir * except that the high level application tell the mechanism and parameters.
68*cdf0e10cSrcweir *
69*cdf0e10cSrcweir * So I think it will be more simple that the application set the encrypted key
70*cdf0e10cSrcweir * information. In this case, the application only need to know the xml schema
71*cdf0e10cSrcweir * or DTD and the encryption device. If so, the high level application takes the
72*cdf0e10cSrcweir * action of build the EncryptedKey template and references it in the element of
73*cdf0e10cSrcweir * EncryptedData. And in this case, the calling to set up EncryptedKey template
74*cdf0e10cSrcweir * and target is not necessary, because the encrypter or decrypter can determine
75*cdf0e10cSrcweir * and locate the EncrypedKet from the encryption template of EncryptedData by
76*cdf0e10cSrcweir * dereference the RetrievalMethod.
77*cdf0e10cSrcweir *
78*cdf0e10cSrcweir * In some situation, the high level applications do not want to know anything
79*cdf0e10cSrcweir * about crypto devices( May be he must, because the lower level do not know
80*cdf0e10cSrcweir * what the key is ). If it gives the key value, it can get EncryptedKey by
81*cdf0e10cSrcweir * setting the key template and key value target.</p>
82*cdf0e10cSrcweir */
83*cdf0e10cSrcweirinterface XXMLEncryptionTemplate : XXMLSecurityTemplate
84*cdf0e10cSrcweir{
85*cdf0e10cSrcweir	/**
86*cdf0e10cSrcweir	 * Get the target xml element, i.e. the element to be encrypted
87*cdf0e10cSrcweir	 */
88*cdf0e10cSrcweir	com::sun::star::xml::wrapper::XXMLElementWrapper getTarget(
89*cdf0e10cSrcweir	) ;
90*cdf0e10cSrcweir} ;
91*cdf0e10cSrcweir
92*cdf0e10cSrcweir
93*cdf0e10cSrcweir} ; } ; } ; } ; } ;
94*cdf0e10cSrcweir
95*cdf0e10cSrcweir
96*cdf0e10cSrcweir#endif
97*cdf0e10cSrcweir
98