aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorTobias Brunner <tobias@strongswan.org>2017-09-19 17:26:58 +0200
committerTobias Brunner <tobias@strongswan.org>2017-11-08 16:48:10 +0100
commitde280c2e031730dc3c2ddcc291b1db5ee61a97d9 (patch)
tree18b731fb0ec7c7066ed519501e293c36891f28b3 /scripts
parenta413571f3bd9c94db02d8a3c026e87d57f5d120a (diff)
downloadstrongswan-de280c2e031730dc3c2ddcc291b1db5ee61a97d9.tar.bz2
strongswan-de280c2e031730dc3c2ddcc291b1db5ee61a97d9.tar.xz
private-key: Add optional parameters argument to sign() method
Diffstat (limited to 'scripts')
-rw-r--r--scripts/pubkey_speed.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/pubkey_speed.c b/scripts/pubkey_speed.c
index 8ccaa0bf8..2928772b8 100644
--- a/scripts/pubkey_speed.c
+++ b/scripts/pubkey_speed.c
@@ -118,7 +118,7 @@ int main(int argc, char *argv[])
start_timing(&timing);
for (round = 0; round < rounds; round++)
{
- if (!private->sign(private, scheme, data, &sigs[round]))
+ if (!private->sign(private, scheme, NULL, data, &sigs[round]))
{
printf("creating signature failed\n");
exit(1);