WG_KEY_LEN
#define WG_BASE64_KEY_LEN (4 * ((WG_KEY_LEN + 2) / 3))
uint8_t _tmp[WG_KEY_LEN]; int _r; \
memcpy(dst, _tmp, WG_KEY_LEN); \
bzero(wg_peer->p_psk, WG_KEY_LEN);
b64_ntop(wg_interface->i_public, WG_KEY_LEN,
b64_ntop(wg_peer->p_public, WG_KEY_LEN,
#define WG_KEY_SIZE WG_KEY_LEN
uint8_t p_public[WG_KEY_LEN];
uint8_t p_psk[WG_KEY_LEN];
uint8_t i_public[WG_KEY_LEN];
uint8_t i_private[WG_KEY_LEN];