1
 2 hashlib++ - a simple hash library for C++
 3 Copyright (c) 2007-2010 Benjamin Grüdelbach
 4
 5 About this document:
 6 This document contains frequently asked questions
 7 You should read this stuff before asking for help.
 8
 9 Apr 2010
10
11 -------------------------------------------------------------------------------
12
13 Q1)     What is hashlib++ ?
14 A1)     hashlib++ is a simple and very easy to use library to create a
15         cryptographic checksum (like MD5 or SHA1) called "hash" in C++.
16
17 -------------------------------------------------------------------------------
18
19 Q2)     What functions are supported?  
20 A2)     By now hashlib++ supports the following functions:
21         * MD5           Message-Digest algorithm 5
22         * SHA1          Secure Hash Algorithm 1
23         * SHA2-Family   Secure Hash Algorithm 256, 384 and 512
24
25 -------------------------------------------------------------------------------
26
27 Q3)     I'm getting a linker error like this:
28         "undefined reference to md5wrapper::md5wrapper()". What can I do?
29 A3)     If you are using hashlib++ as source code library you probably forgot
30         to add the *.cpp files to your project.
31         If you are using hashlib++ as static library you need to link against
32         this library (Please refer to your compiler's manual).
33
34 -------------------------------------------------------------------------------
35 EOF