| Index: src/platform/vboot_reference/tests/rsa_verify_benchmark.c
|
| diff --git a/src/platform/vboot_reference/tests/rsa_verify_benchmark.c b/src/platform/vboot_reference/tests/rsa_verify_benchmark.c
|
| index f3089560cd9374de017fc1249f2dc00dac428e33..ba108be2841c06931bcf538129076b078d5dc0dc 100644
|
| --- a/src/platform/vboot_reference/tests/rsa_verify_benchmark.c
|
| +++ b/src/platform/vboot_reference/tests/rsa_verify_benchmark.c
|
| @@ -9,6 +9,7 @@
|
| #include "file_keys.h"
|
| #include "padding.h"
|
| #include "rsa.h"
|
| +#include "rsa_utility.h"
|
| #include "timer_utils.h"
|
| #include "utility.h"
|
|
|
| @@ -80,7 +81,7 @@ int SpeedTestAlgorithm(int algorithm) {
|
| failure:
|
| Free(signature);
|
| Free(digest);
|
| - Free(key);
|
| + RSAPublicKeyFree(key);
|
| return error_code;
|
| }
|
|
|
|
|