diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2017-01-16 04:25:01 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2017-01-16 04:25:01 +0100 |
commit | 936e83e694b3225dbcc14fc99ca8053e2518ab35 (patch) | |
tree | 337ba121f89a9b2c5ce56d932470e43f56605766 /networking/tls_rsa.c | |
parent | 6c73aaff38819533c55aecc53487d53521915e91 (diff) | |
download | busybox-w32-936e83e694b3225dbcc14fc99ca8053e2518ab35.tar.gz busybox-w32-936e83e694b3225dbcc14fc99ca8053e2518ab35.tar.bz2 busybox-w32-936e83e694b3225dbcc14fc99ca8053e2518ab35.zip |
tls: add sha256 hmac and prf code
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to '')
-rw-r--r-- | networking/tls_rsa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/tls_rsa.c b/networking/tls_rsa.c index 3114435dd..df711865c 100644 --- a/networking/tls_rsa.c +++ b/networking/tls_rsa.c | |||
@@ -187,7 +187,7 @@ int32 psRsaEncryptPub(psPool_t *pool, psRsaKey_t *key, | |||
187 | 187 | ||
188 | size = key->size; | 188 | size = key->size; |
189 | if (outlen < size) { | 189 | if (outlen < size) { |
190 | psTraceCrypto("Error on bad outlen parameter to psRsaEncryptPub\n"); | 190 | psTraceCrypto("Error on bad outlen parameter to psRsaEncryptPub: outlen:%d < size:%d", outlen, size); |
191 | return PS_ARG_FAIL; | 191 | return PS_ARG_FAIL; |
192 | } | 192 | } |
193 | 193 | ||