2021-01-11 12:13:41 -05:00
|
|
|
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
2020-09-05 20:34:02 -04:00
|
|
|
|
2020-11-13 16:01:57 -05:00
|
|
|
#![deny(warnings)]
|
|
|
|
|
2021-04-02 09:47:57 -04:00
|
|
|
use deno_core::error::null_opbuf;
|
2020-09-14 12:48:57 -04:00
|
|
|
use deno_core::error::AnyError;
|
2020-11-13 16:01:57 -05:00
|
|
|
use deno_core::JsRuntime;
|
2020-09-10 09:57:45 -04:00
|
|
|
use deno_core::OpState;
|
2020-04-23 05:51:07 -04:00
|
|
|
use deno_core::ZeroCopyBuf;
|
2020-09-18 14:39:47 -04:00
|
|
|
use rand::rngs::StdRng;
|
2019-08-14 11:03:02 -04:00
|
|
|
use rand::thread_rng;
|
|
|
|
use rand::Rng;
|
2021-02-26 12:06:26 -05:00
|
|
|
use std::path::PathBuf;
|
2019-08-14 11:03:02 -04:00
|
|
|
|
2020-11-13 16:01:57 -05:00
|
|
|
pub use rand; // Re-export rand
|
|
|
|
|
|
|
|
/// Execute this crates' JS source files.
|
|
|
|
pub fn init(isolate: &mut JsRuntime) {
|
|
|
|
let files = vec![(
|
|
|
|
"deno:op_crates/crypto/01_crypto.js",
|
|
|
|
include_str!("01_crypto.js"),
|
|
|
|
)];
|
|
|
|
for (url, source_code) in files {
|
|
|
|
isolate.execute(url, source_code).unwrap();
|
2020-09-28 06:14:11 -04:00
|
|
|
}
|
2019-10-11 14:41:54 -04:00
|
|
|
}
|
|
|
|
|
2021-01-14 19:24:38 -05:00
|
|
|
pub fn op_crypto_get_random_values(
|
2020-09-10 09:57:45 -04:00
|
|
|
state: &mut OpState,
|
2021-04-05 12:40:24 -04:00
|
|
|
_args: (),
|
2021-04-02 09:47:57 -04:00
|
|
|
zero_copy: Option<ZeroCopyBuf>,
|
2021-04-05 12:40:24 -04:00
|
|
|
) -> Result<(), AnyError> {
|
2021-04-02 09:47:57 -04:00
|
|
|
let mut zero_copy = zero_copy.ok_or_else(null_opbuf)?;
|
2020-09-18 14:39:47 -04:00
|
|
|
let maybe_seeded_rng = state.try_borrow_mut::<StdRng>();
|
|
|
|
if let Some(seeded_rng) = maybe_seeded_rng {
|
2021-04-02 09:47:57 -04:00
|
|
|
seeded_rng.fill(&mut *zero_copy);
|
2019-08-14 11:03:02 -04:00
|
|
|
} else {
|
|
|
|
let mut rng = thread_rng();
|
2021-04-02 09:47:57 -04:00
|
|
|
rng.fill(&mut *zero_copy);
|
2019-08-14 11:03:02 -04:00
|
|
|
}
|
|
|
|
|
2021-04-05 12:40:24 -04:00
|
|
|
Ok(())
|
2019-08-14 11:03:02 -04:00
|
|
|
}
|
2021-02-26 12:06:26 -05:00
|
|
|
|
|
|
|
pub fn get_declaration() -> PathBuf {
|
|
|
|
PathBuf::from(env!("CARGO_MANIFEST_DIR")).join("lib.deno_crypto.d.ts")
|
|
|
|
}
|