2025-05-03 16:23:19 +02:00

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