From 4d2d39506b67ae30254e5f3ab6ee9d930224318a Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Wed, 28 Feb 2018 01:49:45 +0100 Subject: noise: align static_identity keys --- src/noise.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/noise.h b/src/noise.h index 05597cd..5eb3a88 100644 --- a/src/noise.h +++ b/src/noise.h @@ -54,10 +54,10 @@ struct noise_keypairs { }; struct noise_static_identity { - bool has_identity; u8 static_public[NOISE_PUBLIC_KEY_LEN]; u8 static_private[NOISE_PUBLIC_KEY_LEN]; struct rw_semaphore lock; + bool has_identity; }; enum noise_handshake_state { -- cgit v1.2.3-59-g8ed1b