blob: 76b80680f693973cef9493b3c888525813bc9d4a [file] [log] [blame]
// Copyright 2015 The Weave Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "src/crypto_utils.h"
bool uw_crypto_utils_equal_(const uint8_t* arr1,
const uint8_t* arr2,
size_t len) {
if (arr1 == NULL || arr2 == NULL) {
if (arr1 == NULL && arr2 == NULL && len == 0) {
return true;
}
return false;
}
uint8_t diff = 0;
for (size_t i = 0; i < len; i++) {
diff |= arr1[i] ^ arr2[i];
}
return 0 == diff;
}