Lines Matching refs:algorithm
96 algorithm: &'static Algorithm, field
102 algorithm
120 algorithm: alg, in generate()
135 algorithm: self.algorithm, in compute_public_key()
142 pub fn algorithm(&self) -> &'static Algorithm { in algorithm() method
143 self.algorithm in algorithm()
155 algorithm: &'static Algorithm, field
168 .field("algorithm", &self.algorithm) in fmt()
177 pub fn algorithm(&self) -> &'static Algorithm { in algorithm() method
178 self.algorithm in algorithm()
184 algorithm: &'static Algorithm, field
196 algorithm: self.algorithm, in clone()
208 .field("algorithm", &self.algorithm) in fmt()
216 pub fn new(algorithm: &'static Algorithm, bytes: B) -> Self { in new()
217 Self { algorithm, bytes } in new()
222 pub fn algorithm(&self) -> &'static Algorithm { in algorithm() method
223 self.algorithm in algorithm()
265 algorithm: peer_public_key.algorithm, in agree_ephemeral()
285 if peer_public_key.algorithm != my_private_key.algorithm { in agree_ephemeral_()
289 let alg = &my_private_key.algorithm; in agree_ephemeral_()