aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public_key/src
diff options
context:
space:
mode:
authorIngela Anderton Andin <[email protected]>2010-11-29 15:40:48 +0100
committerIngela Anderton Andin <[email protected]>2010-11-30 10:33:51 +0100
commit3326cab005954dc6ba6c6596f77b5882b77f6be2 (patch)
tree084e72999e75eabea8a9b24c009412adcd173931 /lib/public_key/src
parent827dc3c7e13d4ce21315f441c4400fb575f41c20 (diff)
downloadotp-3326cab005954dc6ba6c6596f77b5882b77f6be2.tar.gz
otp-3326cab005954dc6ba6c6596f77b5882b77f6be2.tar.bz2
otp-3326cab005954dc6ba6c6596f77b5882b77f6be2.zip
Fixed guard and test case
Data to sign and verify should be inputed as binaries. Also cleaned up and moved some dialyzer specs.
Diffstat (limited to 'lib/public_key/src')
-rw-r--r--lib/public_key/src/public_key.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/public_key/src/public_key.erl b/lib/public_key/src/public_key.erl
index 64496d6f15..30398df9cc 100644
--- a/lib/public_key/src/public_key.erl
+++ b/lib/public_key/src/public_key.erl
@@ -287,8 +287,8 @@ encrypt_private(PlainText, #'RSAPrivateKey'{modulus = N,
sign(PlainText, DigestType, #'RSAPrivateKey'{modulus = N, publicExponent = E,
privateExponent = D})
when is_binary(PlainText),
- DigestType == md5;
- DigestType == sha ->
+ (DigestType == md5 orelse
+ DigestType == sha) ->
crypto:rsa_sign(DigestType, sized_binary(PlainText), [crypto:mpint(E),
crypto:mpint(N),