Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Wim Lewis
nettle
Commits
91da0846
Commit
91da0846
authored
Oct 23, 2018
by
Simo Sorce
Committed by
Niels Möller
Nov 25, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Unit test for pkcs1-sec-decrypt
Signed-off-by:
Simo Sorce
<
simo@redhat.com
>
parent
881b6f0d
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
82 additions
and
1 deletion
+82
-1
testsuite/.gitignore
testsuite/.gitignore
+1
-0
testsuite/.test-rules.make
testsuite/.test-rules.make
+3
-0
testsuite/Makefile.in
testsuite/Makefile.in
+2
-1
testsuite/pkcs1-sec-decrypt-test.c
testsuite/pkcs1-sec-decrypt-test.c
+76
-0
No files found.
testsuite/.gitignore
View file @
91da0846
...
...
@@ -59,6 +59,7 @@
/meta-hash-test
/pbkdf2-test
/pkcs1-test
/pkcs1-sec-decrypt-test
/poly1305-test
/pss-mgf1-test
/pss-test
...
...
testsuite/.test-rules.make
View file @
91da0846
...
...
@@ -187,6 +187,9 @@ random-prime-test$(EXEEXT): random-prime-test.$(OBJEXT)
pkcs1-test$(EXEEXT)
:
pkcs1-test.$(OBJEXT)
$(LINK)
pkcs1-test.
$(OBJEXT)
$(TEST_OBJS)
-o
pkcs1-test
$(EXEEXT)
pkcs1-sec-decrypt-test$(EXEEXT)
:
pkcs1-sec-decrypt-test.$(OBJEXT)
$(LINK)
pkcs1-sec-decrypt-test.
$(OBJEXT)
$(TEST_OBJS)
-o
pkcs1-sec-decrypt-test
$(EXEEXT)
pss-test$(EXEEXT)
:
pss-test.$(OBJEXT)
$(LINK)
pss-test.
$(OBJEXT)
$(TEST_OBJS)
-o
pss-test
$(EXEEXT)
...
...
testsuite/Makefile.in
View file @
91da0846
...
...
@@ -36,7 +36,8 @@ TS_NETTLE_SOURCES = aes-test.c arcfour-test.c arctwo-test.c \
TS_HOGWEED_SOURCES
=
sexp-test.c sexp-format-test.c
\
rsa2sexp-test.c sexp2rsa-test.c
\
bignum-test.c random-prime-test.c
\
pkcs1-test.c pss-test.c rsa-sign-tr-test.c
\
pkcs1-test.c pkcs1-sec-decrypt-test.c
\
pss-test.c rsa-sign-tr-test.c
\
pss-mgf1-test.c rsa-pss-sign-tr-test.c
\
rsa-test.c rsa-encrypt-test.c rsa-keygen-test.c
\
dsa-test.c dsa-keygen-test.c
\
...
...
testsuite/pkcs1-sec-decrypt-test.c
0 → 100644
View file @
91da0846
#include "testutils.h"
#include "rsa.h"
#include "rsa-internal.h"
#if HAVE_VALGRIND_MEMCHECK_H
# include <valgrind/memcheck.h>
static
int
pkcs1_decrypt_for_test
(
size_t
msg_len
,
uint8_t
*
msg
,
size_t
pad_len
,
uint8_t
*
pad
)
{
int
ret
;
VALGRIND_MAKE_MEM_UNDEFINED
(
msg
,
msg_len
);
VALGRIND_MAKE_MEM_UNDEFINED
(
pad
,
pad_len
);
ret
=
_pkcs1_sec_decrypt
(
msg_len
,
msg
,
pad_len
,
pad
);
VALGRIND_MAKE_MEM_DEFINED
(
msg
,
msg_len
);
VALGRIND_MAKE_MEM_DEFINED
(
pad
,
pad_len
);
return
ret
;
}
#else
#define pkcs1_decrypt_for_test _pkcs1_sec_decrypt
#endif
void
test_main
(
void
)
{
uint8_t
pad
[
128
];
uint8_t
buffer
[]
=
"
\x00\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10
"
"
\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20
"
"
\x21\x22\x23\x24\x25\x26\x27\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f\x30
"
"
\x31\x32\x33\x34\x35\x36\x37\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f\x40
"
"
\x41\x42\x43\x44\x45\x46\x47\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f\x50
"
"
\x51\x52\x53\x54\x55\x56\x57\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f\x60
"
"
\x61\x62\x63\x64\x65\x66\x67\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f\x70
"
"
\x00\x53\x49\x47\x4e\x45\x44\x20\x4d\x45\x53\x53\x41\x47\x45\x2e
"
;
uint8_t
message
[
15
];
memcpy
(
pad
,
buffer
,
128
);
memset
(
message
,
'A'
,
15
);
ASSERT
(
pkcs1_decrypt_for_test
(
15
,
message
,
128
,
pad
)
==
1
);
ASSERT
(
memcmp
(
message
,
"SIGNED MESSAGE."
,
15
)
==
0
);
/* break format byte 1 */
memcpy
(
pad
,
buffer
,
128
);
pad
[
0
]
=
1
;
memset
(
message
,
'B'
,
15
);
ASSERT
(
pkcs1_decrypt_for_test
(
15
,
message
,
128
,
pad
)
==
0
);
ASSERT
(
memcmp
(
message
,
"BBBBBBBBBBBBBBB"
,
15
)
==
0
);
/* break format byte 2 */
memcpy
(
pad
,
buffer
,
128
);
pad
[
1
]
=
1
;
memset
(
message
,
'C'
,
15
);
ASSERT
(
pkcs1_decrypt_for_test
(
15
,
message
,
128
,
pad
)
==
0
);
ASSERT
(
memcmp
(
message
,
"CCCCCCCCCCCCCCC"
,
15
)
==
0
);
/* break padding */
memcpy
(
pad
,
buffer
,
128
);
pad
[
24
]
=
0
;
memset
(
message
,
'D'
,
15
);
ASSERT
(
pkcs1_decrypt_for_test
(
15
,
message
,
128
,
pad
)
==
0
);
ASSERT
(
memcmp
(
message
,
"DDDDDDDDDDDDDDD"
,
15
)
==
0
);
/* break terminator */
memcpy
(
pad
,
buffer
,
128
);
pad
[
112
]
=
1
;
memset
(
message
,
'E'
,
15
);
ASSERT
(
pkcs1_decrypt_for_test
(
15
,
message
,
128
,
pad
)
==
0
);
ASSERT
(
memcmp
(
message
,
"EEEEEEEEEEEEEEE"
,
15
)
==
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