Test results for amd64, alder, crypto_sign/ecdonaldp224

[Page version: 20250418 21:20:05]

Measurements for amd64, alder, crypto_sign Test results for amd64, alder, crypto_sign Test results for crypto_sign/ecdonaldp224
Computer: alder
Microarchitecture: amd64; Golden Cove (90675-00)
Architecture: amd64
CPU ID: GenuineIntel-00090675-00-bfebfbff
SUPERCOP version: 20250415
Operation: crypto_sign
Primitive: ecdonaldp224
TimeObject sizeTest sizeImplementationCompilerBenchmark dateSUPERCOP version
4771862849 0 028133 1028 1832T:opensslnewgcc -march=native -mtune=native -O2 -fwrapv -fPIC -fPIE -gdwarf-4 -Wall2025041620250415
4776702597 0 027175 1052 1768T:opensslnewclang -march=native -O -fwrapv -Qunused-arguments -fPIC -fPIE -gdwarf-4 -Wall2025041620250415
4779932684 0 032087 1052 1832T:opensslnewclang -march=native -O2 -fwrapv -Qunused-arguments -fPIC -fPIE -gdwarf-4 -Wall2025041620250415
4785932833 0 030173 1028 1832T:opensslnewgcc -march=native -mtune=native -O3 -fwrapv -fPIC -fPIE -gdwarf-4 -Wall2025041620250415
4786842705 0 033903 1052 1768T:opensslnewclang -mcpu=native -O3 -fwrapv -Qunused-arguments -fPIC -fPIE -gdwarf-4 -Wall2025041620250415
4790522684 0 028176 1044 1832T:opensslnewclang -march=native -Os -fwrapv -Qunused-arguments -fPIC -fPIE -gdwarf-4 -Wall2025041620250415
4806092502 0 026133 1020 1800T:opensslnewgcc -march=native -mtune=native -Os -fwrapv -fPIC -fPIE -gdwarf-4 -Wall2025041620250415
4837173328 0 028421 1028 1832T:opensslnewgcc -march=native -mtune=native -O -fwrapv -fPIC -fPIE -gdwarf-4 -Wall2025041620250415
4930302684 0 032039 1052 1832T:opensslnewclang -march=native -O3 -fwrapv -Qunused-arguments -fPIC -fPIE -gdwarf-4 -Wall2025041620250415

Compiler output


keypair.c: keypair.c:20:7: warning: 'EC_KEY_new' is deprecated [-Wdeprecated-declarations]
keypair.c:    20 |   k = EC_KEY_new(); if (!k) { BN_free(ky); BN_free(kx); return -1; }
keypair.c:       |       ^
keypair.c: /usr/include/openssl/ec.h:987:1: note: 'EC_KEY_new' has been explicitly marked deprecated here
keypair.c:   987 | OSSL_DEPRECATEDIN_3_0 EC_KEY *EC_KEY_new(void);
keypair.c:       | ^
keypair.c: /usr/include/openssl/macros.h:206:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
keypair.c:   206 | #   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
keypair.c:       |                                                 ^
keypair.c: /usr/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
keypair.c:    62 | #     define OSSL_DEPRECATED(since) __attribute__((deprecated))
keypair.c:       |                                                    ^
keypair.c: keypair.c:25:8: warning: 'EC_KEY_set_group' is deprecated [-Wdeprecated-declarations]
keypair.c:    25 |   if (!EC_KEY_set_group(k,group)) goto error;
keypair.c:       |        ^
keypair.c: /usr/include/openssl/ec.h:1061:1: note: 'EC_KEY_set_group' has been explicitly marked deprecated here
keypair.c:  1061 | OSSL_DEPRECATEDIN_3_0 int EC_KEY_set_group(EC_KEY *key, const EC_GROUP *group);
keypair.c:       | ^
keypair.c: /usr/include/openssl/macros.h:206:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
keypair.c:   206 | #   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
keypair.c:       |                                                 ^
keypair.c: /usr/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
keypair.c:    62 | #     define OSSL_DEPRECATED(since) __attribute__((deprecated))
keypair.c:       |                                                    ^
keypair.c: keypair.c:26:8: warning: 'EC_KEY_generate_key' is deprecated [-Wdeprecated-declarations]
keypair.c: ...
signatureofshorthash.c: signatureofshorthash.c:35:7: warning: 'EC_KEY_new' is deprecated [-Wdeprecated-declarations]
signatureofshorthash.c:    35 |   k = EC_KEY_new(); if (!k) { EC_POINT_free(kxy); BN_free(ky); BN_free(kx); return -1; }
signatureofshorthash.c:       |       ^
signatureofshorthash.c: /usr/include/openssl/ec.h:987:1: note: 'EC_KEY_new' has been explicitly marked deprecated here
signatureofshorthash.c:   987 | OSSL_DEPRECATEDIN_3_0 EC_KEY *EC_KEY_new(void);
signatureofshorthash.c:       | ^
signatureofshorthash.c: /usr/include/openssl/macros.h:206:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
signatureofshorthash.c:   206 | #   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
signatureofshorthash.c:       |                                                 ^
signatureofshorthash.c: /usr/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
signatureofshorthash.c:    62 | #     define OSSL_DEPRECATED(since) __attribute__((deprecated))
signatureofshorthash.c:       |                                                    ^
signatureofshorthash.c: signatureofshorthash.c:37:8: warning: 'EC_KEY_set_group' is deprecated [-Wdeprecated-declarations]
signatureofshorthash.c:    37 |   if (!EC_KEY_set_group(k,group)) goto error;
signatureofshorthash.c:       |        ^
signatureofshorthash.c: /usr/include/openssl/ec.h:1061:1: note: 'EC_KEY_set_group' has been explicitly marked deprecated here
signatureofshorthash.c:  1061 | OSSL_DEPRECATEDIN_3_0 int EC_KEY_set_group(EC_KEY *key, const EC_GROUP *group);
signatureofshorthash.c:       | ^
signatureofshorthash.c: /usr/include/openssl/macros.h:206:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
signatureofshorthash.c:   206 | #   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
signatureofshorthash.c:       |                                                 ^
signatureofshorthash.c: /usr/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
signatureofshorthash.c:    62 | #     define OSSL_DEPRECATED(since) __attribute__((deprecated))
signatureofshorthash.c:       |                                                    ^
signatureofshorthash.c: signatureofshorthash.c:40:8: warning: 'EC_KEY_set_private_key' is deprecated [-Wdeprecated-declarations]
signatureofshorthash.c: ...

Number of similar (implementation,compiler) pairs: 5, namely:
ImplementationCompiler
T:opensslclang -march=native -O2 -fwrapv -Qunused-arguments -fPIC -fPIE -gdwarf-4 -Wall (Debian_Clang_19.1.7_(3))
T:opensslclang -march=native -O3 -fwrapv -Qunused-arguments -fPIC -fPIE -gdwarf-4 -Wall (Debian_Clang_19.1.7_(3))
T:opensslclang -march=native -O -fwrapv -Qunused-arguments -fPIC -fPIE -gdwarf-4 -Wall (Debian_Clang_19.1.7_(3))
T:opensslclang -march=native -Os -fwrapv -Qunused-arguments -fPIC -fPIE -gdwarf-4 -Wall (Debian_Clang_11.0.1)
T:opensslclang -mcpu=native -O3 -fwrapv -Qunused-arguments -fPIC -fPIE -gdwarf-4 -Wall (Debian_Clang_19.1.7_(3))

Compiler output


keypair.c: keypair.c: In function 'crypto_sign_ecdonaldp224_openssl_timingleaks_keypair':
keypair.c: keypair.c:20:3: warning: 'EC_KEY_new' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
keypair.c:    20 |   k = EC_KEY_new(); if (!k) { BN_free(ky); BN_free(kx); return -1; }
keypair.c:       |   ^
keypair.c: In file included from /usr/include/openssl/ecdsa.h:10,
keypair.c:                  from keypair.c:3:
keypair.c: /usr/include/openssl/ec.h:987:31: note: declared here
keypair.c:   987 | OSSL_DEPRECATEDIN_3_0 EC_KEY *EC_KEY_new(void);
keypair.c:       |                               ^~~~~~~~~~
keypair.c: keypair.c:25:3: warning: 'EC_KEY_set_group' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
keypair.c:    25 |   if (!EC_KEY_set_group(k,group)) goto error;
keypair.c:       |   ^~
keypair.c: /usr/include/openssl/ec.h:1061:27: note: declared here
keypair.c:  1061 | OSSL_DEPRECATEDIN_3_0 int EC_KEY_set_group(EC_KEY *key, const EC_GROUP *group);
keypair.c:       |                           ^~~~~~~~~~~~~~~~
keypair.c: keypair.c:26:3: warning: 'EC_KEY_generate_key' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
keypair.c:    26 |   if (!EC_KEY_generate_key(k)) goto error;
keypair.c:       |   ^~
keypair.c: /usr/include/openssl/ec.h:1120:27: note: declared here
keypair.c:  1120 | OSSL_DEPRECATEDIN_3_0 int EC_KEY_generate_key(EC_KEY *key);
keypair.c:       |                           ^~~~~~~~~~~~~~~~~~~
keypair.c: keypair.c:28:3: warning: 'EC_KEY_get0_private_key' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
keypair.c:    28 |   len = BN_num_bytes(EC_KEY_get0_private_key(k)); if (len > PRIME_BYTES) goto error;
keypair.c:       |   ^~~
keypair.c: /usr/include/openssl/ec.h:1067:37: note: declared here
keypair.c: ...
signatureofshorthash.c: signatureofshorthash.c:10:19: warning: argument 1 of type 'unsigned char[56]' with mismatched bound [-Warray-parameter=]
signatureofshorthash.c:    10 |     unsigned char sm[SIGNATURE_BYTES],unsigned long long *smlen,
signatureofshorthash.c:       |     ~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~
signatureofshorthash.c: In file included from signatureofshorthash.c:7:
signatureofshorthash.c: short.h:7:33: note: previously declared as 'unsigned char *'
signatureofshorthash.c:     7 | extern int signatureofshorthash(unsigned char *,unsigned long long *,
signatureofshorthash.c:       |                                 ^~~~~~~~~~~~~~~
signatureofshorthash.c: signatureofshorthash.c:11:25: warning: argument 3 of type 'const unsigned char[64]' with mismatched bound [-Warray-parameter=]
signatureofshorthash.c:    11 |     const unsigned char m[SHORTHASH_BYTES],const unsigned long long mlen,
signatureofshorthash.c:       |     ~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
signatureofshorthash.c: short.h:8:3: note: previously declared as 'const unsigned char *'
signatureofshorthash.c:     8 |   const unsigned char *,unsigned long long,
signatureofshorthash.c:       |   ^~~~~~~~~~~~~~~~~~~~~
signatureofshorthash.c: signatureofshorthash.c:12:25: warning: argument 5 of type 'const unsigned char[84]' with mismatched bound [-Warray-parameter=]
signatureofshorthash.c:    12 |     const unsigned char sk[SECRETKEY_BYTES],const unsigned long long sklen
signatureofshorthash.c:       |     ~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~
signatureofshorthash.c: short.h:9:3: note: previously declared as 'const unsigned char *'
signatureofshorthash.c:     9 |   const unsigned char *,unsigned long long);
signatureofshorthash.c:       |   ^~~~~~~~~~~~~~~~~~~~~
signatureofshorthash.c: signatureofshorthash.c: In function 'crypto_sign_ecdonaldp224_openssl_timingleaks_signatureofshorthash':
signatureofshorthash.c: signatureofshorthash.c:35:3: warning: 'EC_KEY_new' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
signatureofshorthash.c:    35 |   k = EC_KEY_new(); if (!k) { EC_POINT_free(kxy); BN_free(ky); BN_free(kx); return -1; }
signatureofshorthash.c:       |   ^
signatureofshorthash.c: In file included from /usr/include/openssl/ecdsa.h:10,
signatureofshorthash.c:                  from signatureofshorthash.c:3:
signatureofshorthash.c: ...

Number of similar (implementation,compiler) pairs: 4, namely:
ImplementationCompiler
T:opensslgcc -march=native -mtune=native -O2 -fwrapv -fPIC -fPIE -gdwarf-4 -Wall (14.2.0)
T:opensslgcc -march=native -mtune=native -O3 -fwrapv -fPIC -fPIE -gdwarf-4 -Wall (14.2.0)
T:opensslgcc -march=native -mtune=native -O -fwrapv -fPIC -fPIE -gdwarf-4 -Wall (10.2.1_20210110)
T:opensslgcc -march=native -mtune=native -Os -fwrapv -fPIC -fPIE -gdwarf-4 -Wall (14.2.0)

Compiler output


keypair.c: keypair.c:23:7: warning: 'EC_KEY_new' is deprecated [-Wdeprecated-declarations]
keypair.c:    23 |   k = EC_KEY_new();
keypair.c:       |       ^
keypair.c: /usr/include/openssl/ec.h:987:1: note: 'EC_KEY_new' has been explicitly marked deprecated here
keypair.c:   987 | OSSL_DEPRECATEDIN_3_0 EC_KEY *EC_KEY_new(void);
keypair.c:       | ^
keypair.c: /usr/include/openssl/macros.h:206:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
keypair.c:   206 | #   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
keypair.c:       |                                                 ^
keypair.c: /usr/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
keypair.c:    62 | #     define OSSL_DEPRECATED(since) __attribute__((deprecated))
keypair.c:       |                                                    ^
keypair.c: keypair.c:28:8: warning: 'EC_KEY_set_group' is deprecated [-Wdeprecated-declarations]
keypair.c:    28 |   if (!EC_KEY_set_group(k,group)) goto error;
keypair.c:       |        ^
keypair.c: /usr/include/openssl/ec.h:1061:1: note: 'EC_KEY_set_group' has been explicitly marked deprecated here
keypair.c:  1061 | OSSL_DEPRECATEDIN_3_0 int EC_KEY_set_group(EC_KEY *key, const EC_GROUP *group);
keypair.c:       | ^
keypair.c: /usr/include/openssl/macros.h:206:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
keypair.c:   206 | #   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
keypair.c:       |                                                 ^
keypair.c: /usr/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
keypair.c:    62 | #     define OSSL_DEPRECATED(since) __attribute__((deprecated))
keypair.c:       |                                                    ^
keypair.c: keypair.c:29:8: warning: 'EC_KEY_generate_key' is deprecated [-Wdeprecated-declarations]
keypair.c: ...
signatureofshorthash.c: signatureofshorthash.c:37:7: warning: 'EC_KEY_new' is deprecated [-Wdeprecated-declarations]
signatureofshorthash.c:    37 |   k = EC_KEY_new(); if (!k) goto error;
signatureofshorthash.c:       |       ^
signatureofshorthash.c: /usr/include/openssl/ec.h:987:1: note: 'EC_KEY_new' has been explicitly marked deprecated here
signatureofshorthash.c:   987 | OSSL_DEPRECATEDIN_3_0 EC_KEY *EC_KEY_new(void);
signatureofshorthash.c:       | ^
signatureofshorthash.c: /usr/include/openssl/macros.h:206:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
signatureofshorthash.c:   206 | #   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
signatureofshorthash.c:       |                                                 ^
signatureofshorthash.c: /usr/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
signatureofshorthash.c:    62 | #     define OSSL_DEPRECATED(since) __attribute__((deprecated))
signatureofshorthash.c:       |                                                    ^
signatureofshorthash.c: signatureofshorthash.c:39:8: warning: 'EC_KEY_set_group' is deprecated [-Wdeprecated-declarations]
signatureofshorthash.c:    39 |   if (!EC_KEY_set_group(k,group)) goto error;
signatureofshorthash.c:       |        ^
signatureofshorthash.c: /usr/include/openssl/ec.h:1061:1: note: 'EC_KEY_set_group' has been explicitly marked deprecated here
signatureofshorthash.c:  1061 | OSSL_DEPRECATEDIN_3_0 int EC_KEY_set_group(EC_KEY *key, const EC_GROUP *group);
signatureofshorthash.c:       | ^
signatureofshorthash.c: /usr/include/openssl/macros.h:206:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
signatureofshorthash.c:   206 | #   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
signatureofshorthash.c:       |                                                 ^
signatureofshorthash.c: /usr/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
signatureofshorthash.c:    62 | #     define OSSL_DEPRECATED(since) __attribute__((deprecated))
signatureofshorthash.c:       |                                                    ^
signatureofshorthash.c: signatureofshorthash.c:42:8: warning: 'EC_KEY_set_private_key' is deprecated [-Wdeprecated-declarations]
signatureofshorthash.c: ...
verification.c: verification.c:36:7: warning: 'EC_KEY_new' is deprecated [-Wdeprecated-declarations]
verification.c:    36 |   k = EC_KEY_new(); if (!k) goto error;
verification.c:       |       ^
verification.c: /usr/include/openssl/ec.h:987:1: note: 'EC_KEY_new' has been explicitly marked deprecated here
verification.c:   987 | OSSL_DEPRECATEDIN_3_0 EC_KEY *EC_KEY_new(void);
verification.c:       | ^
verification.c: /usr/include/openssl/macros.h:206:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
verification.c:   206 | #   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
verification.c:       |                                                 ^
verification.c: /usr/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
verification.c:    62 | #     define OSSL_DEPRECATED(since) __attribute__((deprecated))
verification.c:       |                                                    ^
verification.c: verification.c:38:8: warning: 'EC_KEY_set_group' is deprecated [-Wdeprecated-declarations]
verification.c:    38 |   if (!EC_KEY_set_group(k,group)) goto error;
verification.c:       |        ^
verification.c: /usr/include/openssl/ec.h:1061:1: note: 'EC_KEY_set_group' has been explicitly marked deprecated here
verification.c:  1061 | OSSL_DEPRECATEDIN_3_0 int EC_KEY_set_group(EC_KEY *key, const EC_GROUP *group);
verification.c:       | ^
verification.c: /usr/include/openssl/macros.h:206:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
verification.c:   206 | #   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
verification.c:       |                                                 ^
verification.c: /usr/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
verification.c:    62 | #     define OSSL_DEPRECATED(since) __attribute__((deprecated))
verification.c:       |                                                    ^
verification.c: verification.c:42:8: warning: 'EC_POINT_set_affine_coordinates_GFp' is deprecated [-Wdeprecated-declarations]
verification.c: ...

Number of similar (implementation,compiler) pairs: 5, namely:
ImplementationCompiler
T:opensslnewclang -march=native -O2 -fwrapv -Qunused-arguments -fPIC -fPIE -gdwarf-4 -Wall (Debian_Clang_19.1.7_(3))
T:opensslnewclang -march=native -O3 -fwrapv -Qunused-arguments -fPIC -fPIE -gdwarf-4 -Wall (Debian_Clang_19.1.7_(3))
T:opensslnewclang -march=native -O -fwrapv -Qunused-arguments -fPIC -fPIE -gdwarf-4 -Wall (Debian_Clang_19.1.7_(3))
T:opensslnewclang -march=native -Os -fwrapv -Qunused-arguments -fPIC -fPIE -gdwarf-4 -Wall (Debian_Clang_11.0.1)
T:opensslnewclang -mcpu=native -O3 -fwrapv -Qunused-arguments -fPIC -fPIE -gdwarf-4 -Wall (Debian_Clang_19.1.7_(3))

Compiler output


keypair.c: keypair.c: In function 'crypto_sign_ecdonaldp224_opensslnew_timingleaks_keypair':
keypair.c: keypair.c:23:3: warning: 'EC_KEY_new' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
keypair.c:    23 |   k = EC_KEY_new();
keypair.c:       |   ^
keypair.c: In file included from /usr/include/openssl/ecdsa.h:10,
keypair.c:                  from keypair.c:3:
keypair.c: /usr/include/openssl/ec.h:987:31: note: declared here
keypair.c:   987 | OSSL_DEPRECATEDIN_3_0 EC_KEY *EC_KEY_new(void);
keypair.c:       |                               ^~~~~~~~~~
keypair.c: keypair.c:28:3: warning: 'EC_KEY_set_group' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
keypair.c:    28 |   if (!EC_KEY_set_group(k,group)) goto error;
keypair.c:       |   ^~
keypair.c: /usr/include/openssl/ec.h:1061:27: note: declared here
keypair.c:  1061 | OSSL_DEPRECATEDIN_3_0 int EC_KEY_set_group(EC_KEY *key, const EC_GROUP *group);
keypair.c:       |                           ^~~~~~~~~~~~~~~~
keypair.c: keypair.c:29:3: warning: 'EC_KEY_generate_key' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
keypair.c:    29 |   if (!EC_KEY_generate_key(k)) goto error;
keypair.c:       |   ^~
keypair.c: /usr/include/openssl/ec.h:1120:27: note: declared here
keypair.c:  1120 | OSSL_DEPRECATEDIN_3_0 int EC_KEY_generate_key(EC_KEY *key);
keypair.c:       |                           ^~~~~~~~~~~~~~~~~~~
keypair.c: keypair.c:31:3: warning: 'EC_KEY_get0_private_key' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
keypair.c:    31 |   len = BN_num_bytes(EC_KEY_get0_private_key(k));
keypair.c:       |   ^~~
keypair.c: /usr/include/openssl/ec.h:1067:37: note: declared here
keypair.c: ...
signatureofshorthash.c: signatureofshorthash.c:10:19: warning: argument 1 of type 'unsigned char[56]' with mismatched bound [-Warray-parameter=]
signatureofshorthash.c:    10 |     unsigned char sm[SIGNATURE_BYTES],unsigned long long *smlen,
signatureofshorthash.c:       |     ~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~
signatureofshorthash.c: In file included from signatureofshorthash.c:7:
signatureofshorthash.c: short.h:7:33: note: previously declared as 'unsigned char *'
signatureofshorthash.c:     7 | extern int signatureofshorthash(unsigned char *,unsigned long long *,
signatureofshorthash.c:       |                                 ^~~~~~~~~~~~~~~
signatureofshorthash.c: signatureofshorthash.c:11:25: warning: argument 3 of type 'const unsigned char[64]' with mismatched bound [-Warray-parameter=]
signatureofshorthash.c:    11 |     const unsigned char m[SHORTHASH_BYTES],const unsigned long long mlen,
signatureofshorthash.c:       |     ~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
signatureofshorthash.c: short.h:8:3: note: previously declared as 'const unsigned char *'
signatureofshorthash.c:     8 |   const unsigned char *,unsigned long long,
signatureofshorthash.c:       |   ^~~~~~~~~~~~~~~~~~~~~
signatureofshorthash.c: signatureofshorthash.c:12:25: warning: argument 5 of type 'const unsigned char[84]' with mismatched bound [-Warray-parameter=]
signatureofshorthash.c:    12 |     const unsigned char sk[SECRETKEY_BYTES],const unsigned long long sklen
signatureofshorthash.c:       |     ~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~
signatureofshorthash.c: short.h:9:3: note: previously declared as 'const unsigned char *'
signatureofshorthash.c:     9 |   const unsigned char *,unsigned long long);
signatureofshorthash.c:       |   ^~~~~~~~~~~~~~~~~~~~~
signatureofshorthash.c: signatureofshorthash.c: In function 'crypto_sign_ecdonaldp224_opensslnew_timingleaks_signatureofshorthash':
signatureofshorthash.c: signatureofshorthash.c:37:3: warning: 'EC_KEY_new' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
signatureofshorthash.c:    37 |   k = EC_KEY_new(); if (!k) goto error;
signatureofshorthash.c:       |   ^
signatureofshorthash.c: In file included from /usr/include/openssl/ecdsa.h:10,
signatureofshorthash.c:                  from signatureofshorthash.c:3:
signatureofshorthash.c: ...
verification.c: verification.c:9:25: warning: argument 1 of type 'const unsigned char[64]' with mismatched bound [-Warray-parameter=]
verification.c:     9 |     const unsigned char m[SHORTHASH_BYTES],const unsigned long long mlen,
verification.c:       |     ~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
verification.c: In file included from verification.c:6:
verification.c: short.h:10:25: note: previously declared as 'const unsigned char *'
verification.c:    10 | extern int verification(const unsigned char *,unsigned long long,
verification.c:       |                         ^~~~~~~~~~~~~~~~~~~~~
verification.c: verification.c:10:25: warning: argument 3 of type 'const unsigned char[56]' with mismatched bound [-Warray-parameter=]
verification.c:    10 |     const unsigned char sm[SIGNATURE_BYTES],const unsigned long long smlen,
verification.c:       |     ~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~
verification.c: short.h:11:3: note: previously declared as 'const unsigned char *'
verification.c:    11 |   const unsigned char *,unsigned long long,
verification.c:       |   ^~~~~~~~~~~~~~~~~~~~~
verification.c: verification.c:11:25: warning: argument 5 of type 'const unsigned char[56]' with mismatched bound [-Warray-parameter=]
verification.c:    11 |     const unsigned char pk[PUBLICKEY_BYTES],const unsigned long long pklen
verification.c:       |     ~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~
verification.c: short.h:12:3: note: previously declared as 'const unsigned char *'
verification.c:    12 |   const unsigned char *,unsigned long long);
verification.c:       |   ^~~~~~~~~~~~~~~~~~~~~
verification.c: verification.c: In function 'crypto_sign_ecdonaldp224_opensslnew_timingleaks_verification':
verification.c: verification.c:36:3: warning: 'EC_KEY_new' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
verification.c:    36 |   k = EC_KEY_new(); if (!k) goto error;
verification.c:       |   ^
verification.c: In file included from /usr/include/openssl/ecdsa.h:10,
verification.c:                  from verification.c:2:
verification.c: ...

Number of similar (implementation,compiler) pairs: 4, namely:
ImplementationCompiler
T:opensslnewgcc -march=native -mtune=native -O2 -fwrapv -fPIC -fPIE -gdwarf-4 -Wall (14.2.0)
T:opensslnewgcc -march=native -mtune=native -O3 -fwrapv -fPIC -fPIE -gdwarf-4 -Wall (14.2.0)
T:opensslnewgcc -march=native -mtune=native -O -fwrapv -fPIC -fPIE -gdwarf-4 -Wall (10.2.1_20210110)
T:opensslnewgcc -march=native -mtune=native -Os -fwrapv -fPIC -fPIE -gdwarf-4 -Wall (14.2.0)