summaryrefslogtreecommitdiff
path: root/source/security_algorithms/SecurityAlgorithms.h
blob: 51dbcde1f8f90d386a997feddf1699f1872b4e8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/******************************************************************************
*
* Copyright (C) ST-Ericsson SA 2011
* License terms: 3-clause BSD license
*
******************************************************************************/

#ifndef _SECURITYALGORITHMS_H_
#define _SECURITYALGORITHMS_H_

class SecurityAlgorithms
{
public:
    static int SHA256(unsigned char *pData, unsigned long ulDataLen, unsigned char *pDigest);
private:
    SecurityAlgorithms();
    ~SecurityAlgorithms();
};

#endif // _SECURITYALGORITHMS_H_