Tom Willemse
6aa289c124
- Add ~dispasstest~ which is used to test the DisPass algorithms. - Remove =main= from libdispass since shared libraries shouldn't have main functions - Add ~dispass.h~ which defines and exports the DisPass algorithms. - Make some functions in ~dispass.c~ static to make clear they're not exported anywhere.
7 lines
222 B
C
7 lines
222 B
C
#ifndef DISPASS_H
|
|
#define DISPASS_H
|
|
|
|
char *dispass1(char *label, char *password, int len, long long unsigned seqno);
|
|
char *dispass2(char *label, char *password, int len, long long unsigned seqno);
|
|
|
|
#endif /* DISPASS_H */
|