From aca394946c74c9ee97b4c10a3c2e473cf0d9f1c3 Mon Sep 17 00:00:00 2001 From: Adam Ierymenko Date: Tue, 28 Feb 2023 18:00:44 -0500 Subject: [PATCH] Warning removal. --- zssp/src/zssp.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zssp/src/zssp.rs b/zssp/src/zssp.rs index 3142ab72b..20d7d58bd 100644 --- a/zssp/src/zssp.rs +++ b/zssp/src/zssp.rs @@ -16,7 +16,7 @@ use std::sync::{Arc, Mutex, RwLock, Weak}; use zerotier_crypto::aes::{Aes, AesCtr, AesGcm}; use zerotier_crypto::hash::{hmac_sha512, HMACSHA384, HMAC_SHA384_SIZE, SHA384, SHA384_HASH_SIZE}; -use zerotier_crypto::p384::{P384KeyPair, P384PublicKey, P384_ECDH_SHARED_SECRET_SIZE, P384_PUBLIC_KEY_SIZE}; +use zerotier_crypto::p384::{P384KeyPair, P384PublicKey, P384_ECDH_SHARED_SECRET_SIZE}; use zerotier_crypto::secret::Secret; use zerotier_crypto::{random, secure_eq};