Lines Matching refs:Key
269 pub(crate) struct Key(*mut bssl_sys::EC_KEY); struct
271 impl Key { implementation
462 unsafe impl Sync for Key {} implementation
463 unsafe impl Send for Key {} implementation
465 impl Drop for Key { implementation
518 let key = Key::generate(Group::P256); in test_point_format()
558 Serialize: FnOnce(&Key) -> Buffer, in test_key_format()
559 Parse: Fn(&[u8]) -> Option<Key>, in test_key_format() argument
561 let key = Key::generate(Group::P256); in test_key_format()
578 |buf| Key::from_der_ec_private_key(Group::P256, buf), in der_ec_private_key()
586 |buf| Key::from_der_private_key_info(Group::P256, buf), in der_private_key_info()
594 |buf| Key::from_big_endian(Group::P256, buf), in big_endian()