12 lines
204 B
C++
12 lines
204 B
C++
#include <stddef.h>
|
|
#include <string>
|
|
#include <sys/types.h>
|
|
#include <vector>
|
|
#ifndef PM_TYPES_H
|
|
#define PM_TYPES_H
|
|
typedef struct {
|
|
std::vector<u_int8_t> pulic_key;
|
|
std::string name;
|
|
} user;
|
|
#endif
|