Skip to content

Commit

Permalink
RSA-Verify Flüchtigkeitsfehler behoben
Browse files Browse the repository at this point in the history
  • Loading branch information
Tristan-H11 committed May 31, 2024
1 parent 1ddf60d commit fe678e1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ impl<'a> Verifier<RsaWithStringScheme> for RsaWithStringScheme {
.iter()
.zip(encrypted_signature_chunks.iter())
.all(|(message_chunk, encrypted_signature_chunk)| {
RsaScheme::verify(rsa_key, message_chunk, encrypted_signature_chunk, service)
RsaScheme::verify(rsa_key, encrypted_signature_chunk, message_chunk, service)
})
}
}
Expand Down

0 comments on commit fe678e1

Please sign in to comment.