summaryrefslogtreecommitdiff
path: root/source/security_algorithms/SecurityAlgorithms.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/security_algorithms/SecurityAlgorithms.h')
-rw-r--r--source/security_algorithms/SecurityAlgorithms.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/source/security_algorithms/SecurityAlgorithms.h b/source/security_algorithms/SecurityAlgorithms.h
new file mode 100644
index 0000000..51dbcde
--- /dev/null
+++ b/source/security_algorithms/SecurityAlgorithms.h
@@ -0,0 +1,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_