blob: 0b037304f9a0ddb6614cfbcf4d9c7c50a0252395 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* Photo ID functions */
#ifndef _PHOTOID_H_
#define _PHOTOID_H_
#include "packet.h"
PKT_user_id *generate_photo_id(PKT_public_key *pk);
void show_photo(const struct user_attribute *attr,PKT_public_key *pk);
#endif /* !_PHOTOID_H_ */
|