2014-02-14 23:21:05 +00:00
|
|
|
// Copyright 2014 Google Inc. All rights reserved.
|
|
|
|
//
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file or at
|
|
|
|
// https://developers.google.com/open-source/licenses/bsd
|
2014-01-07 18:32:23 +00:00
|
|
|
//
|
|
|
|
// Fake, deterministic PRNG for OpenSSL to be used for unit testing.
|
|
|
|
|
|
|
|
#ifndef MEDIA_BASE_FAKE_PRNG_H
|
|
|
|
#define MEDIA_BASE_FAKE_PRNG_H
|
|
|
|
|
|
|
|
namespace media {
|
|
|
|
namespace fake_prng {
|
|
|
|
|
2014-01-24 18:46:46 +00:00
|
|
|
/// Start using fake, deterministic PRNG for OpenSSL.
|
|
|
|
/// @return true if successful, false otherwise.
|
2014-01-07 18:32:23 +00:00
|
|
|
bool StartFakePrng();
|
|
|
|
|
2014-01-24 18:46:46 +00:00
|
|
|
/// Stop using fake, deterministic PRNG for OpenSSL.
|
2014-01-07 18:32:23 +00:00
|
|
|
void StopFakePrng();
|
|
|
|
|
|
|
|
} // namespace fake_prng
|
|
|
|
} // namespace media
|
|
|
|
|
|
|
|
#endif // MEDIA_BASE_FAKE_PRNG_H
|