tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

det_rng.h (465B)


      1 /* This Source Code Form is subject to the terms of the Mozilla Public
      2 * License, v. 2.0. If a copy of the MPL was not distributed with this
      3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
      4 
      5 #ifndef __det_rng_h_
      6 #define __det_rng_h_
      7 
      8 SECStatus prng_ResetForFuzzing(PZLock *rng_lock);
      9 SECStatus prng_GenerateDeterministicRandomBytes(PZLock *rng_lock, void *dest,
     10                                                size_t len);
     11 
     12 #endif /* __det_rng_h_ */