summaryrefslogtreecommitdiffstats
path: root/ppapi/cpp/dev/crypto_dev.h
blob: 2bbd43d8da9472ab86dce6c12f9bffc936fbebbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// 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.

#ifndef PPAPI_CPP_DEV_CRYPTO_DEV_H_
#define PPAPI_CPP_DEV_CRYPTO_DEV_H_

#include "ppapi/c/pp_stdint.h"

/// @file
/// This file defines APIs related to cryptography.

namespace pp {

/// APIs related to cryptography.
class Crypto_Dev {
 public:
  Crypto_Dev() {}

  /// A function that fills the buffer with random bytes. This may be slow, so
  /// avoid getting more bytes than needed.
  ///
  /// @param[out] buffer The buffer to receive the random bytes.
  /// @param[in] num_bytes A number of random bytes to produce.
  /// @return True on success, false on failure.
  bool GetRandomBytes(char* buffer, uint32_t num_bytes);
};

}  // namespace pp

#endif  // PPAPI_CPP_DEV_CRYPTO_DEV_H_