blob: 394c6c05b86aa209fb497a933be45f54a7d787fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef __KEYS_H__
#define __KEYS_H__
#define publickeyuserid 0
#define secretkeyuserid 1
void initKeyUserIDs(const int atype);
void updateKeyUserIDs(const int atype);
void releaseKeyUserIDs(const int atype);
char *getKeyUserID(const int atype, const int aindex);
int getKeyUserIDCount(const int atype);
#endif // __KEYS_H__
|