Skip to content

Commit 002e886

Browse files
authored
Fixes #10294 -- correct accidental change to exchange kwarg (#10295) (#10296)
1 parent 92fa9f2 commit 002e886

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

src/rust/src/backend/dh.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -154,11 +154,11 @@ impl DHPrivateKey {
154154
fn exchange<'p>(
155155
&self,
156156
py: pyo3::Python<'p>,
157-
public_key: &DHPublicKey,
157+
peer_public_key: &DHPublicKey,
158158
) -> CryptographyResult<&'p pyo3::types::PyBytes> {
159159
let mut deriver = openssl::derive::Deriver::new(&self.pkey)?;
160160
deriver
161-
.set_peer(&public_key.pkey)
161+
.set_peer(&peer_public_key.pkey)
162162
.map_err(|_| pyo3::exceptions::PyValueError::new_err("Error computing shared key."))?;
163163

164164
Ok(pyo3::types::PyBytes::new_with(py, deriver.len()?, |b| {

src/rust/src/backend/ec.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ impl ECPrivateKey {
232232
&self,
233233
py: pyo3::Python<'p>,
234234
algorithm: &pyo3::PyAny,
235-
public_key: &ECPublicKey,
235+
peer_public_key: &ECPublicKey,
236236
) -> CryptographyResult<&'p pyo3::types::PyBytes> {
237237
if !algorithm.is_instance(types::ECDH.get(py)?)? {
238238
return Err(CryptographyError::from(
@@ -249,12 +249,12 @@ impl ECPrivateKey {
249249
// ECPublicKey object.
250250
#[cfg(CRYPTOGRAPHY_OPENSSL_300_OR_GREATER)]
251251
deriver
252-
.set_peer_ex(&public_key.pkey, false)
252+
.set_peer_ex(&peer_public_key.pkey, false)
253253
.map_err(|_| pyo3::exceptions::PyValueError::new_err("Error computing shared key."))?;
254254

255255
#[cfg(not(CRYPTOGRAPHY_OPENSSL_300_OR_GREATER))]
256256
deriver
257-
.set_peer(&public_key.pkey)
257+
.set_peer(&peer_public_key.pkey)
258258
.map_err(|_| pyo3::exceptions::PyValueError::new_err("Error computing shared key."))?;
259259

260260
Ok(pyo3::types::PyBytes::new_with(py, deriver.len()?, |b| {

src/rust/src/backend/x25519.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,10 @@ impl X25519PrivateKey {
6565
fn exchange<'p>(
6666
&self,
6767
py: pyo3::Python<'p>,
68-
public_key: &X25519PublicKey,
68+
peer_public_key: &X25519PublicKey,
6969
) -> CryptographyResult<&'p pyo3::types::PyBytes> {
7070
let mut deriver = openssl::derive::Deriver::new(&self.pkey)?;
71-
deriver.set_peer(&public_key.pkey)?;
71+
deriver.set_peer(&peer_public_key.pkey)?;
7272

7373
Ok(pyo3::types::PyBytes::new_with(py, deriver.len()?, |b| {
7474
let n = deriver.derive(b).map_err(|_| {

src/rust/src/backend/x448.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,10 @@ impl X448PrivateKey {
6464
fn exchange<'p>(
6565
&self,
6666
py: pyo3::Python<'p>,
67-
public_key: &X448PublicKey,
67+
peer_public_key: &X448PublicKey,
6868
) -> CryptographyResult<&'p pyo3::types::PyBytes> {
6969
let mut deriver = openssl::derive::Deriver::new(&self.pkey)?;
70-
deriver.set_peer(&public_key.pkey)?;
70+
deriver.set_peer(&peer_public_key.pkey)?;
7171

7272
Ok(pyo3::types::PyBytes::new_with(py, deriver.len()?, |b| {
7373
let n = deriver.derive(b).map_err(|_| {

0 commit comments

Comments
 (0)