blob: 1e199db1c457a391478a3ab5edb7bf768ea28720 [file] [log] [blame]
[email protected]3b63f8f42011-03-28 01:54:151// Copyright (c) 2011 The Chromium Authors. All rights reserved.
[email protected]3bcd57902010-06-23 22:46:042// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
[email protected]4b559b4d2011-04-14 17:37:145#include "crypto/capi_util.h"
[email protected]3bcd57902010-06-23 22:46:046
avidd373b8b2015-12-21 21:34:437#include <stddef.h>
davidbene125bd22017-01-03 22:30:168#include <stdlib.h>
[email protected]3bcd57902010-06-23 22:46:049
[email protected]4b559b4d2011-04-14 17:37:1410namespace crypto {
[email protected]3bcd57902010-06-23 22:46:0411
[email protected]68da8872012-02-15 06:01:5912void* WINAPI CryptAlloc(size_t size) {
13 return malloc(size);
14}
15
16void WINAPI CryptFree(void* p) {
17 free(p);
18}
19
[email protected]4b559b4d2011-04-14 17:37:1420} // namespace crypto