view ui/sslhelp.h @ 633:6c090638b2b4

Use static buffer for module file name. According to the msdn examle the return value of getmodulefilename should be used to indicate success and not the size. And according to comments on that function on Windows 8.1 it does not return the needed size. So better be more robust and just use max_path as a limit.
author Andre Heinecke <andre.heinecke@intevation.de>
date Mon, 23 Jun 2014 15:29:48 +0200
parents 5ebee91c0bb8
children c8a6a3e6bdeb
line wrap: on
line source
#ifndef SSLHELP_H
#define SSLHELP_H
/* Copyright (C) 2014 by Bundesamt für Sicherheit in der Informationstechnik
 * Software engineering by Intevation GmbH
 *
 * This file is Free Software under the GNU GPL (v>=2)
 * and comes with ABSOLUTELY NO WARRANTY!
 * See LICENSE.txt for details.
 */


/**
 * @file sslhelp.h
 * @brief Helper functions to combine Qt with Polarssl
 */
#include <polarssl/error.h>
#include <polarssl/pk.h>

#include <QString>

/** @brief get a human readable error message for a polarssl return code
 *
 * @param [in] ret A polarssl error code
 * @returns A QString representation of that error
 */
QString getPolarSSLErrorMsg(int ret);

/** @brief calculate the sha256 of the bytearray data
 *
 * @param [in] data The data to hash
 * @returns the sha256sum of the data
 */
QByteArray sha256sum(const QByteArray& data);

/** @brief Create a RSA signature fur a sha256 hashsum
 *
 * @param [in] hash the hash to sign.
 * @param [in] pk the key to use.
 * @returns the signature of the data or an empty byte array on error
 */
QByteArray rsaSignSHA256Hash(const QByteArray& hash, pk_context *pk);
#endif // SSLHELP_H

http://wald.intevation.org/projects/trustbridge/