Home
last modified time | relevance | path

Searched defs:CryptoVec (Results 1 – 13 of 13) sorted by relevance

/dports/devel/pijul/pijul-1.0.0.a55/cargo-crates/cryptovec-0.6.1/src/
H A Dlib.rs25 pub struct CryptoVec { struct
31 impl Unpin for CryptoVec {} implementation
33 unsafe impl Send for CryptoVec {} implementation
36 impl AsRef<[u8]> for CryptoVec { implementation
41 impl AsMut<[u8]> for CryptoVec { implementation
46 impl Deref for CryptoVec { implementation
52 impl DerefMut for CryptoVec { implementation
135 impl Default for CryptoVec { implementation
169 impl Clone for CryptoVec { implementation
177 impl CryptoVec { impl
[all …]
/dports/devel/pijul/pijul-1.0.0.a55/cargo-crates/thrussh-0.33.5/src/
H A Dkey.rs21 fn push_to(&self, buffer: &mut CryptoVec); in push_to()
25 fn push_to(&self, buffer: &mut CryptoVec) { in push_to()
47 fn push_to(&self, buffer: &mut CryptoVec) { in push_to()
H A Dcompression.rs73 _: &'a mut cryptovec::CryptoVec, in compress()
84 _: &'a mut cryptovec::CryptoVec, in decompress()
95 output: &'a mut cryptovec::CryptoVec, in compress()
128 output: &'a mut cryptovec::CryptoVec, in decompress()
H A Dkex.rs94 client_ephemeral: &mut CryptoVec, in client_dh()
95 buf: &mut CryptoVec, in client_dh()
130 buffer: &mut CryptoVec, in compute_exchange_hash()
H A Dsession.rs220 write: &mut CryptoVec, in data_noqueue()
252 pub fn data(&mut self, channel: ChannelId, buf0: CryptoVec) { in data()
266 pub fn extended_data(&mut self, channel: ChannelId, ext: u32, buf0: CryptoVec) { in extended_data()
/dports/devel/pijul/pijul-1.0.0.a55/cargo-crates/thrussh-0.33.5/src/server/
H A Dsession.rs26 pub async fn data(&mut self, id: ChannelId, data: CryptoVec) -> Result<(), CryptoVec> { in data() argument
41 data: CryptoVec, in extended_data()
42 ) -> Result<(), CryptoVec> { in extended_data() argument
303 pub fn data(&mut self, channel: ChannelId, data: CryptoVec) { in data() method
317 pub fn extended_data(&mut self, channel: ChannelId, extended: u32, data: CryptoVec) { in extended_data()
H A Dencrypted.rs183 buffer: &mut CryptoVec, in server_accept_service()
424 write: &mut CryptoVec, in reject_auth_request()
439 fn server_auth_request_success(buffer: &mut CryptoVec) { in server_auth_request_success()
448 write: &mut CryptoVec, in read_userauth_info_response()
474 write: &mut CryptoVec, in reply_userauth_info_response()
898 fn server_confirm_channel_open(buffer: &mut CryptoVec, channel: &Channel, config: &Config) { in server_confirm_channel_open()
/dports/devel/pijul/pijul-1.0.0.a55/cargo-crates/thrussh-keys-0.21.0/src/agent/
H A Dclient.rs278 mut data: CryptoVec, in sign_request()
279 ) -> impl futures::Future<Output = (Self, Result<CryptoVec, Error>)> { in sign_request()
474 fn key_blob(public: &key::PublicKey, buf: &mut CryptoVec) { in key_blob()
H A Dserver.rs236 writebuf: &mut CryptoVec, in add_key()
348 writebuf: &mut CryptoVec, in try_sign()
/dports/devel/pijul/pijul-1.0.0.a55/cargo-crates/thrussh-0.33.5/src/client/
H A Dsession.rs319 pub fn data(&mut self, channel: ChannelId, data: CryptoVec) { in data() method
335 pub fn extended_data(&mut self, channel: ChannelId, ext: u32, data: CryptoVec) { in extended_data()
H A Dencrypted.rs577 buffer: &mut CryptoVec, in client_make_to_sign()
597 buffer: &mut CryptoVec, in client_send_signature()
/dports/devel/pijul/pijul-1.0.0.a55/cargo-crates/thrussh-keys-0.21.0/src/
H A Dencoding.rs104 impl Encoding for CryptoVec { implementation
159 impl Reader for CryptoVec { implementation
H A Dkey.rs355 buffer: &mut CryptoVec, in add_signature()