Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
external
mbedtls
Commits
fdddac90
Commit
fdddac90
authored
Mar 25, 2014
by
Manuel Pégourié-Gonnard
Committed by
Paul Bakker
Mar 26, 2014
Browse files
Fix stupid bug in rsa_copy()
parent
e01af4cd
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
ChangeLog
ChangeLog
+1
-0
library/rsa.c
library/rsa.c
+1
-1
No files found.
ChangeLog
View file @
fdddac90
...
...
@@ -51,6 +51,7 @@ Bugfix
containing a client certificate
* ssl_init() was leaving a dirty pointer in ssl_context if malloc of
out_ctr failed
* Fix typo in rsa_copy() that impacted PKCS#1 v2 contexts
= PolarSSL 1.3.4 released on 2014-01-27
Features
...
...
library/rsa.c
View file @
fdddac90
...
...
@@ -1381,7 +1381,7 @@ int rsa_copy( rsa_context *dst, const rsa_context *src )
#endif
dst
->
padding
=
src
->
padding
;
dst
->
hash_id
=
src
->
padding
;
dst
->
hash_id
=
src
->
hash_id
;
cleanup:
if
(
ret
!=
0
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment