Lines Matching refs:algorithm
94 algorithm: &'static Algorithm, field
100 algorithm
118 algorithm: alg, in generate()
133 algorithm: self.algorithm, in compute_public_key()
140 pub fn algorithm(&self) -> &'static Algorithm { in algorithm() method
141 self.algorithm in algorithm()
153 algorithm: &'static Algorithm, field
166 .field("algorithm", &self.algorithm) in fmt()
175 pub fn algorithm(&self) -> &'static Algorithm { in algorithm() method
176 self.algorithm in algorithm()
182 algorithm: &'static Algorithm, field
194 algorithm: self.algorithm, in clone()
206 .field("algorithm", &self.algorithm) in fmt()
214 pub fn new(algorithm: &'static Algorithm, bytes: B) -> Self { in new()
215 Self { algorithm, bytes } in new()
220 pub fn algorithm(&self) -> &'static Algorithm { in algorithm() method
221 self.algorithm in algorithm()
255 algorithm: peer_public_key.algorithm, in agree_ephemeral()
271 if peer_public_key.algorithm != my_private_key.algorithm { in agree_ephemeral_()
275 let alg = &my_private_key.algorithm; in agree_ephemeral_()