OpenCoverageOpenSSL

OpenSSL patch #18 - Test report of the modifications

Overview

Test Execution StatusStatistics
Passed
  0.000% (0/43)
Incident
  0.000% (0/43)
Skipped
  0.000% (0/43)
Failed
  0.000% (0/43)
Requires Manual Checking
  0.000% (0/43)
Unknown
  0.000% (0/43)
All
  0.000% (0/43)
CategoryRemoved LinesInserted LinesTotal
Modified lines executed:
  0.000% (0/6)
  0.000% (0/6)
  0.000% (0/12)
Modified lines not executed:
 33.333% (2/6)
  0.000% (0/6)
 16.667% (2/12)
Source code lines not instrumented:
 66.667% (4/6)
100.000% (6/6)
 83.333% (10/12)

List of tests executing the changes

Execution NameState

Patch File

Showing: 

Modified File: crypto/rsa/rsa_meth.c

LineTestsDifference Output
diff --git a/crypto/rsa/rsa_meth.c b/crypto/rsa/rsa_meth.c
index f5880a73d0..def19f375f 100644
--- a/crypto/rsa/rsa_meth.c
+++ b/crypto/rsa/rsa_meth.c
@@ -163,13 +163,13 @@ int RSA_meth_set_priv_dec(RSA_METHOD *meth,
163
164 /* Can be null */
165 int (*RSA_meth_get_mod_exp(const RSA_METHOD *meth))
166
0
- (BIGNUM *r0, const BIGNUM *I, RSA *rsa, BN_CTX *ctx)
166
-
+ (BIGNUM *r0, const BIGNUM *i, RSA *rsa, BN_CTX *ctx)
167 {
168 return meth->rsa_mod_exp;
169 }
170
171 int RSA_meth_set_mod_exp(RSA_METHOD *meth,
172
0
- int (*mod_exp) (BIGNUM *r0, const BIGNUM *I, RSA *rsa,
172
-
+ int (*mod_exp) (BIGNUM *r0, const BIGNUM *i, RSA *rsa,
173 BN_CTX *ctx))
174 {
175 meth->rsa_mod_exp = mod_exp;

Modified File: doc/man3/RSA_meth_new.pod

LineTestsDifference Output
diff --git a/doc/man3/RSA_meth_new.pod b/doc/man3/RSA_meth_new.pod
index 69ba9dfc5a..f21095156c 100644
--- a/doc/man3/RSA_meth_new.pod
+++ b/doc/man3/RSA_meth_new.pod
@@ -64,10 +64,10 @@ RSA_meth_get_multi_prime_keygen, RSA_meth_set_multi_prime_keygen
64 unsigned char *to, RSA *rsa, int padding));
65
66 /* Can be null */
67
-
No equivalent source code line in the reference code can be identified.
- int (*RSA_meth_get_mod_exp(const RSA_METHOD *meth))(BIGNUM *r0, const BIGNUM *I,
67
-
+ int (*RSA_meth_get_mod_exp(const RSA_METHOD *meth))(BIGNUM *r0, const BIGNUM *i,
68 RSA *rsa, BN_CTX *ctx);
69 int RSA_meth_set_mod_exp(RSA_METHOD *rsa,
70
-
No equivalent source code line in the reference code can be identified.
- int (*mod_exp)(BIGNUM *r0, const BIGNUM *I, RSA *rsa,
70
-
+ int (*mod_exp)(BIGNUM *r0, const BIGNUM *i, RSA *rsa,
71 BN_CTX *ctx));
72
73 /* Can be null */

Modified File: include/openssl/rsa.h

LineTestsDifference Output
diff --git a/include/openssl/rsa.h b/include/openssl/rsa.h
index a611b6a0be..a38ba12f1e 100644
--- a/include/openssl/rsa.h
+++ b/include/openssl/rsa.h
@@ -456,9 +456,9 @@ int RSA_meth_set_priv_dec(RSA_METHOD *rsa,
456 unsigned char *to, RSA *rsa,
457 int padding));
458 int (*RSA_meth_get_mod_exp(const RSA_METHOD *meth))
459
-
No equivalent source code line in the reference code can be identified.
- (BIGNUM *r0, const BIGNUM *I, RSA *rsa, BN_CTX *ctx);
459
-
+ (BIGNUM *r0, const BIGNUM *i, RSA *rsa, BN_CTX *ctx);
460 int RSA_meth_set_mod_exp(RSA_METHOD *rsa,
461
-
No equivalent source code line in the reference code can be identified.
- int (*mod_exp) (BIGNUM *r0, const BIGNUM *I, RSA *rsa,
461
-
+ int (*mod_exp) (BIGNUM *r0, const BIGNUM *i, RSA *rsa,
462 BN_CTX *ctx));
463 int (*RSA_meth_get_bn_mod_exp(const RSA_METHOD *meth))
464 (BIGNUM *r, const BIGNUM *a, const BIGNUM *p,

Generated by Squish Coco 4.2.2