Codechange: Specify underlying type for all enums excluding those exposed to scripts. (#13383)
This commit is contained in:
@@ -49,7 +49,7 @@ using X25519Mac = std::array<uint8_t, X25519_MAC_SIZE>;
|
||||
using X25519KeyExchangeMessage = std::array<uint8_t, X25519_KEY_EXCHANGE_MESSAGE_SIZE>;
|
||||
|
||||
/** The side of the key exchange. */
|
||||
enum class X25519KeyExchangeSide {
|
||||
enum class X25519KeyExchangeSide : uint8_t {
|
||||
CLIENT, ///< We are the client.
|
||||
SERVER, ///< We are the server.
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user