1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
11 #ifndef INCLUDED_OOX_CRYPTO_CRYPTOENGINE_HXX
12 #define INCLUDED_OOX_CRYPTO_CRYPTOENGINE_HXX
16 #include <rtl/ustring.hxx>
17 #include <sal/types.h>
19 #include <com/sun/star/io/XInputStream.hpp>
20 #include <com/sun/star/io/XOutputStream.hpp>
23 class BinaryXInputStream
;
24 class BinaryXOutputStream
;
27 namespace oox::crypto
{
32 std::vector
<sal_uInt8
> mKey
;
38 virtual ~CryptoEngine()
42 virtual bool readEncryptionInfo(css::uno::Reference
<css::io::XInputStream
> & rxInputStream
) = 0;
44 virtual bool generateEncryptionKey(const OUString
& rPassword
) = 0;
47 BinaryXInputStream
& aInputStream
,
48 BinaryXOutputStream
& aOutputStream
) = 0;
51 virtual void writeEncryptionInfo(BinaryXOutputStream
& rStream
) = 0;
53 virtual bool setupEncryption(const OUString
& rPassword
) = 0;
55 virtual void encrypt(const css::uno::Reference
<css::io::XInputStream
> & rxInputStream
,
56 css::uno::Reference
<css::io::XOutputStream
> & rxOutputStream
,
57 sal_uInt32 nSize
) = 0;
59 virtual bool checkDataIntegrity() = 0;
62 } // namespace oox::crypto
66 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */