2021-01-12 02:13:41 +09:00
|
|
|
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
2020-09-06 02:34:02 +02:00
|
|
|
|
2020-11-14 02:31:57 +05:30
|
|
|
#![deny(warnings)]
|
|
|
|
|
2020-09-14 18:48:57 +02:00
|
|
|
use deno_core::error::AnyError;
|
2020-09-21 18:36:37 +02:00
|
|
|
use deno_core::serde_json::json;
|
|
|
|
use deno_core::serde_json::Value;
|
2020-11-14 02:31:57 +05:30
|
|
|
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 20:39:47 +02:00
|
|
|
use rand::rngs::StdRng;
|
2019-08-14 17:03:02 +02:00
|
|
|
use rand::thread_rng;
|
|
|
|
use rand::Rng;
|
|
|
|
|
2020-11-14 02:31:57 +05:30
|
|
|
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 12:14:11 +02:00
|
|
|
}
|
2019-10-11 11:41:54 -07:00
|
|
|
}
|
|
|
|
|
2021-01-15 01:24:38 +01:00
|
|
|
pub fn op_crypto_get_random_values(
|
2020-09-10 09:57:45 -04:00
|
|
|
state: &mut OpState,
|
2019-08-26 14:50:21 +02:00
|
|
|
_args: Value,
|
2020-06-01 20:20:47 +02:00
|
|
|
zero_copy: &mut [ZeroCopyBuf],
|
2020-09-14 18:48:57 +02:00
|
|
|
) -> Result<Value, AnyError> {
|
2020-06-01 20:20:47 +02:00
|
|
|
assert_eq!(zero_copy.len(), 1);
|
2020-09-18 20:39:47 +02:00
|
|
|
let maybe_seeded_rng = state.try_borrow_mut::<StdRng>();
|
|
|
|
if let Some(seeded_rng) = maybe_seeded_rng {
|
|
|
|
seeded_rng.fill(&mut *zero_copy[0]);
|
2019-08-14 17:03:02 +02:00
|
|
|
} else {
|
|
|
|
let mut rng = thread_rng();
|
2020-06-01 20:20:47 +02:00
|
|
|
rng.fill(&mut *zero_copy[0]);
|
2019-08-14 17:03:02 +02:00
|
|
|
}
|
|
|
|
|
2020-08-28 17:08:24 +02:00
|
|
|
Ok(json!({}))
|
2019-08-14 17:03:02 +02:00
|
|
|
}
|