| /external/rust/crates/ring/src/ |
| D | rand.rs | 33 fn fill(&self, dest: &mut [u8]) -> Result<(), error::Unspecified>; in fill() 41 fn fill(&self, dest: &mut [u8]) -> Result<(), error::Unspecified> { in fill() 78 fn fill_impl(&self, dest: &mut [u8]) -> Result<(), error::Unspecified>; in fill_impl() 159 fn fill_impl(&self, dest: &mut [u8]) -> Result<(), error::Unspecified> { in fill_impl() 203 pub fn chunk(dest: &mut [u8]) -> Result<usize, error::Unspecified> { in chunk() 240 pub fn chunk(mut dest: &mut [u8]) -> Result<usize, error::Unspecified> { in chunk() 264 pub fn chunk(dest: &mut [u8]) -> Result<usize, error::Unspecified> { in chunk() 293 pub fn fill(dest: &mut [u8]) -> Result<(), error::Unspecified> { in fill() 317 pub fn fill(dest: &mut [u8]) -> Result<(), error::Unspecified> { in fill() 351 pub fn fill(dest: &mut [u8]) -> Result<(), error::Unspecified> { in fill() [all …]
|
| D | error.rs | 77 pub struct Unspecified; struct 80 impl core::fmt::Display for Unspecified { implementation 87 impl std::error::Error for Unspecified {} implementation 89 impl From<untrusted::EndOfInput> for Unspecified { implementation 95 impl From<core::array::TryFromSliceError> for Unspecified { implementation 194 impl From<KeyRejected> for Unspecified { implementation
|
| D | bits.rs | 32 pub fn from_usize_bytes(bytes: usize) -> Result<Self, error::Unspecified> { in from_usize_bytes() 63 pub(crate) fn try_sub_1(self) -> Result<Self, error::Unspecified> { in try_sub_1()
|
| D | agreement.rs | 108 ) -> Result<Self, error::Unspecified> { in generate() 124 pub fn compute_public_key(&self) -> Result<PublicKey, error::Unspecified> { in compute_public_key() 253 ) -> Result<R, error::Unspecified> { in agree_ephemeral() 265 ) -> Result<R, error::Unspecified> { in agree_ephemeral_()
|
| D | hkdf.rs | 131 ) -> Result<Okm<'a, L>, error::Unspecified> { in expand() 183 pub fn fill(self, out: &mut [u8]) -> Result<(), error::Unspecified> { in fill() 193 ) -> Result<(), error::Unspecified> { in fill_okm()
|
| D | constant_time.rs | 23 pub fn verify_slices_are_equal(a: &[u8], b: &[u8]) -> Result<(), error::Unspecified> { in verify_slices_are_equal()
|
| D | signature.rs | 360 ) -> Result<(), error::Unspecified>; in verify() 396 pub fn verify(&self, message: &[u8], signature: &[u8]) -> Result<(), error::Unspecified> { in verify()
|
| D | test.rs | 320 F: FnMut(&str, &mut TestCase) -> Result<(), error::Unspecified>, in run() 489 fn fill_impl(&self, dest: &mut [u8]) -> Result<(), error::Unspecified> { in fill_impl() 504 fn fill_impl(&self, dest: &mut [u8]) -> Result<(), error::Unspecified> { in fill_impl() 527 fn fill_impl(&self, dest: &mut [u8]) -> Result<(), error::Unspecified> { in fill_impl()
|
| D | hmac.rs | 177 ) -> Result<Self, error::Unspecified> { in generate() 181 fn construct<F>(algorithm: Algorithm, fill: F) -> Result<Self, error::Unspecified> in construct() 338 pub fn verify(key: &Key, data: &[u8], tag: &[u8]) -> Result<(), error::Unspecified> { in verify()
|
| /external/rust/crates/ring/src/ec/suite_b/ |
| D | private_key.rs | 30 ) -> Result<Scalar, error::Unspecified> { in random_scalar() 42 ) -> Result<(), error::Unspecified> { in generate_private_scalar_bytes() 101 ) -> Result<(), error::Unspecified> { in check_scalar_big_endian_bytes() 114 ) -> Result<Scalar, error::Unspecified> { in scalar_from_big_endian_bytes() 137 ) -> Result<(), error::Unspecified> { in public_from_private() 153 ) -> Result<(Elem<R>, Elem<R>), error::Unspecified> { in affine_from_jacobian() 190 ) -> Result<(), error::Unspecified> { in big_endian_affine_from_jacobian()
|
| /external/rust/crates/ring/tests/ |
| D | aead_tests.rs | 100 f: impl Fn(&'static aead::Algorithm, KnownAnswerTestCase) -> Result<(), error::Unspecified>, in test_aead() 143 ) -> Result<(), error::Unspecified> in test_seal_append_tag() 161 ) -> Result<(), error::Unspecified> in test_seal_separate_tag() 176 ) -> Result<(), error::Unspecified> in test_open_in_place() 196 ) -> Result<(), error::Unspecified> in test_open_within() 290 ) -> Result<(), error::Unspecified> { in sealing_key_seal_in_place_append_tag() 300 ) -> Result<(), error::Unspecified> { in sealing_key_seal_in_place_separate_tag() 310 ) -> Result<(), error::Unspecified> { in opening_key_open_in_place() 320 ) -> Result<(), error::Unspecified> { in opening_key_open_within() 330 ) -> Result<(), error::Unspecified> { in less_safe_key_seal_in_place_append_tag() [all …]
|
| /external/rust/crates/ring/src/io/ |
| D | der.rs | 58 ) -> Result<untrusted::Input<'a>, error::Unspecified> { in expect_tag_and_get_value() 68 ) -> Result<(u8, untrusted::Input<'a>), error::Unspecified> { in read_tag_and_get_value() 106 ) -> Result<untrusted::Input<'a>, error::Unspecified> { in bit_string_with_no_unused_bits() 134 ) -> Result<untrusted::Input<'a>, error::Unspecified> { in nonnegative_integer() 137 fn check_minimum(input: untrusted::Input, min_value: u8) -> Result<(), error::Unspecified> { in nonnegative_integer() 192 pub fn small_nonnegative_integer(input: &mut untrusted::Reader) -> Result<u8, error::Unspecified> { in small_nonnegative_integer() 204 ) -> Result<Positive<'a>, error::Unspecified> { in positive_integer() 215 F: FnOnce(&mut untrusted::Reader) -> Result<R, error::Unspecified>, in with_good_i() 223 F: FnOnce(&mut untrusted::Reader) -> Result<R, error::Unspecified>, in with_bad_i()
|
| /external/rust/crates/ring/src/ec/curve25519/ |
| D | x25519.rs | 44 fn x25519_check_private_key_bytes(bytes: &[u8]) -> Result<(), error::Unspecified> { in x25519_check_private_key_bytes() 52 ) -> Result<(), error::Unspecified> { in x25519_generate_private_key() 59 ) -> Result<(), error::Unspecified> { in x25519_public_from_private() 97 ) -> Result<(), error::Unspecified> { in x25519_ecdh()
|
| /external/rust/crates/ring/src/ec/ |
| D | keys.rs | 10 pub fn derive(seed: Seed) -> Result<Self, error::Unspecified> { in derive() 35 ) -> Result<Self, error::Unspecified> { in generate() 49 ) -> Result<Self, error::Unspecified> { in from_bytes() 68 pub fn compute_public_key(&self) -> Result<PublicKey, error::Unspecified> { in compute_public_key()
|
| D | suite_b.rs | 35 ) -> Result<(), error::Unspecified> { in verify_affine_point_is_on_the_curve() 51 ) -> Result<Elem<R>, error::Unspecified> { in verify_jacobian_point_is_on_the_curve() 141 ) -> Result<(), error::Unspecified> { in verify_affine_point_is_on_the_curve_scaled()
|
| /external/rust/crates/ring/src/rsa/ |
| D | verification.rs | 26 ) -> Result<(), error::Unspecified> { in verify() 174 ) -> Result<(), error::Unspecified> { in verify() 190 ) -> Result<(), error::Unspecified> { in verify()
|
| D | padding.rs | 44 ) -> Result<(), error::Unspecified>; in encode() 57 ) -> Result<(), error::Unspecified>; in verify() 88 ) -> Result<(), error::Unspecified> { in encode() 100 ) -> Result<(), error::Unspecified> { in verify() 243 ) -> Result<(), error::Unspecified> { in encode() 312 ) -> Result<(), error::Unspecified> { in verify() 411 ) -> Result<Self, error::Unspecified> { in new() 642 ) -> Result<&'in_out [u8], error::Unspecified> { in oaep_decode() 706 ) -> Result<Box<[u8]>, error::Unspecified> { in oaep_encode()
|
| /external/rust/crates/ring/src/aead/ |
| D | quic.rs | 54 ) -> Result<Self, error::Unspecified> { in new() 64 pub fn new_mask(&self, sample: &[u8]) -> Result<[u8; 5], error::Unspecified> { in new_mask() 147 fn aes_init_128(key: &[u8], cpu_features: cpu::Features) -> Result<KeyInner, error::Unspecified> { in aes_init_128() 152 fn aes_init_256(key: &[u8], cpu_features: cpu::Features) -> Result<KeyInner, error::Unspecified> { in aes_init_256() 174 fn chacha20_init(key: &[u8], cpu_features: cpu::Features) -> Result<KeyInner, error::Unspecified> { in chacha20_init()
|
| D | less_safe_key.rs | 38 ) -> Result<Self, error::Unspecified> { in new_() 144 ) -> Result<&'in_out mut [u8], error::Unspecified> { in open_within_() 175 ) -> Result<Tag, error::Unspecified> { in seal_in_place_separate_tag_() 180 fn check_per_nonce_max_bytes(alg: &Algorithm, in_out_len: usize) -> Result<(), error::Unspecified> { in check_per_nonce_max_bytes()
|
| D | aes_gcm.rs | 48 fn init_128(key: &[u8], cpu_features: cpu::Features) -> Result<aead::KeyInner, error::Unspecified> { in init_128() 52 fn init_256(key: &[u8], cpu_features: cpu::Features) -> Result<aead::KeyInner, error::Unspecified> { in init_256() 60 ) -> Result<aead::KeyInner, error::Unspecified> { in init()
|
| /external/rust/crates/ring/src/ec/suite_b/ecdsa/ |
| D | verification.rs | 58 ) -> Result<(), error::Unspecified> { in verify() 80 ) -> Result<(), error::Unspecified> { in verify_digest() 178 ) -> Result<(untrusted::Input<'a>, untrusted::Input<'a>), error::Unspecified> { in split_rs_fixed() 188 ) -> Result<(untrusted::Input<'a>, untrusted::Input<'a>), error::Unspecified> { in split_rs_asn1()
|
| D | signing.rs | 85 ) -> Result<pkcs8::Document, error::Unspecified> { in generate_pkcs8() 177 ) -> Result<signature::Signature, error::Unspecified> { in sign() 198 ) -> Result<signature::Signature, error::Unspecified> { in sign_with_fixed_nonce_during_test() 211 ) -> Result<signature::Signature, error::Unspecified> { in sign_digest() 300 fn fill_impl(&self, dest: &mut [u8]) -> Result<(), error::Unspecified> { in fill_impl()
|
| /external/rust/crates/ring/src/rsa/keypair/ |
| D | oaep.rs | 27 ) -> Result<Box<[u8]>, error::Unspecified> { in decrypt_oaep_bytes_less_safe()
|
| /external/angle/src/tests/perf_tests/ |
| D | LinkProgramPerfTest.cpp | 27 Unspecified enumerator 35 Unspecified enumerator
|
| /external/rust/crates/ring/src/rsa/public/ |
| D | oaep.rs | 14 ) -> Result<Box<[u8]>, error::Unspecified> { in encrypt_oaep_bytes_less_safe()
|