2010-10-14 08:27:31 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-07-02 10:15:23 +01:00
|
|
|
/*
|
|
|
|
* This file is part of the LibreOffice project.
|
|
|
|
*
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*
|
|
|
|
* This file incorporates work covered by the following license notice:
|
|
|
|
*
|
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
|
|
* with this work for additional information regarding copyright
|
|
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
|
|
* License, Version 2.0 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
|
|
|
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
|
|
|
*/
|
2001-02-22 16:34:47 +00:00
|
|
|
|
2013-10-23 19:14:56 +02:00
|
|
|
#ifndef INCLUDED_SVL_PASSWORDHELPER_HXX
|
|
|
|
#define INCLUDED_SVL_PASSWORDHELPER_HXX
|
2001-02-22 16:34:47 +00:00
|
|
|
|
2013-11-09 15:22:49 -06:00
|
|
|
#include <svl/svldllapi.h>
|
|
|
|
#include <sal/types.h>
|
|
|
|
#include <com/sun/star/uno/Sequence.hxx>
|
2001-02-22 16:34:47 +00:00
|
|
|
|
|
|
|
class SvPasswordHelper
|
|
|
|
{
|
2012-11-26 16:17:51 -06:00
|
|
|
static void GetHashPasswordLittleEndian(com::sun::star::uno::Sequence<sal_Int8>& rPassHash, const OUString& sPass);
|
|
|
|
static void GetHashPasswordBigEndian(com::sun::star::uno::Sequence<sal_Int8>& rPassHash, const OUString& sPass);
|
2005-04-13 08:57:19 +00:00
|
|
|
|
2001-02-22 16:34:47 +00:00
|
|
|
public:
|
2010-09-28 11:38:45 -04:00
|
|
|
SVL_DLLPUBLIC static void GetHashPassword(com::sun::star::uno::Sequence <sal_Int8>& rPassHash, const sal_Char* pPass, sal_uInt32 nLen);
|
|
|
|
|
2012-11-26 16:17:51 -06:00
|
|
|
SVL_DLLPUBLIC static void GetHashPassword(com::sun::star::uno::Sequence<sal_Int8>& rPassHash, const OUString& sPass);
|
2002-07-24 06:17:01 +00:00
|
|
|
/**
|
|
|
|
Use this method to compare a given string with another given Hash value.
|
|
|
|
This is necessary, because in older versions exists different hashs of the same string. They were endian dependent.
|
|
|
|
We need this to handle old files. This method will compare against big and little endian. See #101326#
|
|
|
|
*/
|
2012-11-26 16:17:51 -06:00
|
|
|
SVL_DLLPUBLIC static bool CompareHashPassword(const com::sun::star::uno::Sequence<sal_Int8>& rOldPassHash, const OUString& sNewPass);
|
2001-02-22 16:34:47 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2010-10-14 08:27:31 +02:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|