mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
getRandomValues uses ArrayBufferView now
This commit is contained in:
parent
4e26212d5e
commit
723e03ef01
2 changed files with 12 additions and 19 deletions
|
@ -12,6 +12,8 @@ use dom::globalscope::GlobalScope;
|
||||||
use dom_struct::dom_struct;
|
use dom_struct::dom_struct;
|
||||||
use js::jsapi::{JSContext, JSObject};
|
use js::jsapi::{JSContext, JSObject};
|
||||||
use js::jsapi::Type;
|
use js::jsapi::Type;
|
||||||
|
use js::rust::CustomAutoRooterGuard;
|
||||||
|
use js::typedarray::ArrayBufferView;
|
||||||
use servo_rand::{ServoRng, Rng};
|
use servo_rand::{ServoRng, Rng};
|
||||||
use std::ptr::NonNull;
|
use std::ptr::NonNull;
|
||||||
|
|
||||||
|
@ -43,29 +45,21 @@ impl CryptoMethods for Crypto {
|
||||||
// https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#Crypto-method-getRandomValues
|
// https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#Crypto-method-getRandomValues
|
||||||
unsafe fn GetRandomValues(&self,
|
unsafe fn GetRandomValues(&self,
|
||||||
_cx: *mut JSContext,
|
_cx: *mut JSContext,
|
||||||
input: *mut JSObject)
|
mut input: CustomAutoRooterGuard<ArrayBufferView>)
|
||||||
-> Fallible<NonNull<JSObject>> {
|
-> Fallible<NonNull<JSObject>> {
|
||||||
assert!(!input.is_null());
|
let array_type = input.get_array_type();
|
||||||
typedarray!(in(_cx) let mut array_buffer_view: ArrayBufferView = input);
|
|
||||||
let (array_type, mut data) = match array_buffer_view.as_mut() {
|
|
||||||
Ok(x) => (x.get_array_type(), x.as_mut_slice()),
|
|
||||||
Err(_) => {
|
|
||||||
return Err(Error::Type("Argument to Crypto.getRandomValues is not an ArrayBufferView"
|
|
||||||
.to_owned()));
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
if !is_integer_buffer(array_type) {
|
if !is_integer_buffer(array_type) {
|
||||||
return Err(Error::TypeMismatch);
|
return Err(Error::TypeMismatch);
|
||||||
|
} else {
|
||||||
|
let mut data = input.as_mut_slice();
|
||||||
|
if data.len() > 65536 {
|
||||||
|
return Err(Error::QuotaExceeded);
|
||||||
|
}
|
||||||
|
self.rng.borrow_mut().fill_bytes(&mut data);
|
||||||
}
|
}
|
||||||
|
|
||||||
if data.len() > 65536 {
|
Ok(NonNull::new_unchecked(*input.underlying_object()))
|
||||||
return Err(Error::QuotaExceeded);
|
|
||||||
}
|
|
||||||
|
|
||||||
self.rng.borrow_mut().fill_bytes(&mut data);
|
|
||||||
|
|
||||||
Ok(NonNull::new_unchecked(input))
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,6 @@ WorkerGlobalScope implements GlobalCrypto;
|
||||||
[Exposed=(Window,Worker)]
|
[Exposed=(Window,Worker)]
|
||||||
interface Crypto {
|
interface Crypto {
|
||||||
//readonly attribute SubtleCrypto subtle;
|
//readonly attribute SubtleCrypto subtle;
|
||||||
//ArrayBufferView getRandomValues(ArrayBufferView array);
|
|
||||||
[Throws]
|
[Throws]
|
||||||
ArrayBufferView getRandomValues(object array);
|
ArrayBufferView getRandomValues(ArrayBufferView array);
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue