No-Typo-Check: Not related to this change. Bug: 161477208 Change-Id: I99e4780f6855b7045aa0cd5a49c13d2d0d51ed64
34 lines
840 B
C
34 lines
840 B
C
// Copyright 2019 Google LLC. All rights reserved. This file and proprietary
|
|
// source code may only be used and distributed under the Widevine
|
|
// License Agreement.
|
|
|
|
#include "odk_util.h"
|
|
|
|
int crypto_memcmp(const void* in_a, const void* in_b, size_t len) {
|
|
if (len == 0) {
|
|
return 0;
|
|
}
|
|
|
|
/* Only valid pointers are allowed. */
|
|
if (in_a == NULL || in_b == NULL) {
|
|
return -1;
|
|
}
|
|
|
|
const uint8_t* a = (const uint8_t*)in_a;
|
|
const uint8_t* b = (const uint8_t*)in_b;
|
|
uint8_t x = 0;
|
|
|
|
for (size_t i = 0; i < len; i++) {
|
|
x |= a[i] ^ b[i];
|
|
}
|
|
return x;
|
|
}
|
|
|
|
bool ODK_NonceValuesEqualExcludingVersion(const ODK_NonceValues* a,
|
|
const ODK_NonceValues* b) {
|
|
if (a == NULL || b == NULL) {
|
|
return (a == b);
|
|
}
|
|
return (a->nonce == b->nonce && a->session_id == b->session_id);
|
|
}
|