[NaCl SDK] Add ps_internal.h to declare shared internal symbols.
[chromium-blink-merge.git] / ppapi / c / dev / ppb_crypto_dev.h
bloba8c5062e88de2624e9fb7cf11e1a8b0761cf745a
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file.
4 */
6 /* From dev/ppb_crypto_dev.idl modified Wed Nov 7 13:40:08 2012. */
8 #ifndef PPAPI_C_DEV_PPB_CRYPTO_DEV_H_
9 #define PPAPI_C_DEV_PPB_CRYPTO_DEV_H_
11 #include "ppapi/c/pp_macros.h"
12 #include "ppapi/c/pp_stdint.h"
14 #define PPB_CRYPTO_DEV_INTERFACE_0_1 "PPB_Crypto(Dev);0.1"
15 #define PPB_CRYPTO_DEV_INTERFACE PPB_CRYPTO_DEV_INTERFACE_0_1
17 /**
18 * @file
19 * This file defines the PPB_Crypto_Dev interface.
23 /**
24 * @addtogroup Interfaces
25 * @{
27 struct PPB_Crypto_Dev_0_1 {
28 /**
29 * Fills the given buffer with random bytes. This is potentially slow so only
30 * request the amount of data you need.
32 void (*GetRandomBytes)(char* buffer, uint32_t num_bytes);
35 typedef struct PPB_Crypto_Dev_0_1 PPB_Crypto_Dev;
36 /**
37 * @}
40 #endif /* PPAPI_C_DEV_PPB_CRYPTO_DEV_H_ */