blob: 51b2baec334c949ed3d13efd188ac8fc61af8672 [file] [log] [blame]
/* Copyright (c) 2012 The Chromium Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
/**
* This file defines the PPB_Crypto_Dev interface.
*/
label Chrome {
M13 = 0.1
};
interface PPB_Crypto_Dev {
/**
* Fills the given buffer with random bytes. This is potentially slow so only
* request the amount of data you need.
*/
void GetRandomBytes([out] str_t buffer, [in] uint32_t num_bytes);
};