2015-06-22 18:50:56 +02:00
|
|
|
/* Copyright 2015 OpenMarket Ltd
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
2015-06-27 01:15:23 +02:00
|
|
|
#include "olm/memory.hh"
|
2016-05-20 13:35:19 +02:00
|
|
|
#include "olm/memory.h"
|
2015-02-27 17:11:30 +01:00
|
|
|
|
2016-05-20 13:35:19 +02:00
|
|
|
void _olm_unset(
|
|
|
|
void volatile * buffer, size_t buffer_length
|
|
|
|
) {
|
|
|
|
olm::unset(buffer, buffer_length);
|
|
|
|
}
|
2015-03-03 16:08:56 +01:00
|
|
|
|
2015-06-27 01:15:23 +02:00
|
|
|
void olm::unset(
|
2015-03-03 16:08:56 +01:00
|
|
|
void volatile * buffer, std::size_t buffer_length
|
2015-02-27 17:11:30 +01:00
|
|
|
) {
|
2015-03-03 16:08:56 +01:00
|
|
|
char volatile * pos = reinterpret_cast<char volatile *>(buffer);
|
|
|
|
char volatile * end = pos + buffer_length;
|
2015-02-27 17:11:30 +01:00
|
|
|
while (pos != end) {
|
|
|
|
*(pos++) = 0;
|
|
|
|
}
|
|
|
|
}
|
2015-03-03 16:08:56 +01:00
|
|
|
|
|
|
|
|
2015-06-27 01:15:23 +02:00
|
|
|
bool olm::is_equal(
|
2015-03-03 16:08:56 +01:00
|
|
|
std::uint8_t const * buffer_a,
|
|
|
|
std::uint8_t const * buffer_b,
|
|
|
|
std::size_t length
|
|
|
|
) {
|
|
|
|
std::uint8_t volatile result = 0;
|
|
|
|
while (length--) {
|
|
|
|
result |= (*(buffer_a++)) ^ (*(buffer_b++));
|
|
|
|
}
|
|
|
|
return result == 0;
|
|
|
|
}
|