Implementation notes: amd64, hertz, crypto_sign/gui448

Computer: hertz
Microarchitecture: amd64; Zen 4 (a60f12)
Architecture: amd64
CPU ID: AuthenticAMD-00a60f12-178bfbff
SUPERCOP version: 20240716
Operation: crypto_sign
Primitive: gui448

Compiler output


gfext_poly_gf2.c: gfext_poly_gf2.c:88:20: warning: unused function 'poly_muladd' [-Wunused-function]
gfext_poly_gf2.c:    88 | static inline void poly_muladd( uint8_t *p3, const uint8_t *p1 , unsigned p1deg , unsigned p1raise , const uint8_t *c )
gfext_poly_gf2.c:       |                    ^~~~~~~~~~~
gfext_poly_gf2.c: 1 warning generated.
hash_utils.c: hash_utils.c:29:2: warning: 'SHA512_Init' is deprecated [-Wdeprecated-declarations]
hash_utils.c:    29 |         SHA512_Init( &sha512 );
hash_utils.c:       |         ^
hash_utils.c: /usr/include/openssl/sha.h:123:1: note: 'SHA512_Init' has been explicitly marked deprecated here
hash_utils.c:   123 | OSSL_DEPRECATEDIN_3_0 int SHA512_Init(SHA512_CTX *c);
hash_utils.c:       | ^
hash_utils.c: /usr/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
hash_utils.c:   182 | #   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
hash_utils.c:       |                                                 ^
hash_utils.c: /usr/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
hash_utils.c:    62 | #     define OSSL_DEPRECATED(since) __attribute__((deprecated))
hash_utils.c:       |                                                    ^
hash_utils.c: hash_utils.c:30:2: warning: 'SHA512_Update' is deprecated [-Wdeprecated-declarations]
hash_utils.c:    30 |         SHA512_Update( &sha512 , m , mlen );
hash_utils.c:       |         ^
hash_utils.c: /usr/include/openssl/sha.h:124:1: note: 'SHA512_Update' has been explicitly marked deprecated here
hash_utils.c:   124 | OSSL_DEPRECATEDIN_3_0 int SHA512_Update(SHA512_CTX *c,
hash_utils.c:       | ^
hash_utils.c: /usr/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
hash_utils.c:   182 | #   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
hash_utils.c:       |                                                 ^
hash_utils.c: /usr/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
hash_utils.c:    62 | #     define OSSL_DEPRECATED(since) __attribute__((deprecated))
hash_utils.c:       |                                                    ^
hash_utils.c: hash_utils.c:31:2: warning: 'SHA512_Final' is deprecated [-Wdeprecated-declarations]
hash_utils.c: ...

Number of similar (implementation,compiler) pairs: 9, namely:
ImplementationCompiler
T:amd64clang -march=native -O2 -fwrapv -Qunused-arguments -fPIC -fPIE -gdwarf-4 -Wall (Ubuntu_Clang_18.1.3_(1ubuntu1))
T:amd64clang -march=native -O3 -fwrapv -Qunused-arguments -fPIC -fPIE -gdwarf-4 -Wall (Ubuntu_Clang_18.1.3_(1ubuntu1))
T:amd64clang -march=native -Os -fwrapv -Qunused-arguments -fPIC -fPIE -gdwarf-4 -Wall (Ubuntu_Clang_18.1.3_(1ubuntu1))
T:pclmulqdqclang -march=native -O2 -fwrapv -Qunused-arguments -fPIC -fPIE -gdwarf-4 -Wall (Ubuntu_Clang_18.1.3_(1ubuntu1))
T:pclmulqdqclang -march=native -O3 -fwrapv -Qunused-arguments -fPIC -fPIE -gdwarf-4 -Wall (Ubuntu_Clang_18.1.3_(1ubuntu1))
T:pclmulqdqclang -march=native -Os -fwrapv -Qunused-arguments -fPIC -fPIE -gdwarf-4 -Wall (Ubuntu_Clang_18.1.3_(1ubuntu1))
T:refclang -march=native -O2 -fwrapv -Qunused-arguments -fPIC -fPIE -gdwarf-4 -Wall (Ubuntu_Clang_18.1.3_(1ubuntu1))
T:refclang -march=native -O3 -fwrapv -Qunused-arguments -fPIC -fPIE -gdwarf-4 -Wall (Ubuntu_Clang_18.1.3_(1ubuntu1))
T:refclang -march=native -Os -fwrapv -Qunused-arguments -fPIC -fPIE -gdwarf-4 -Wall (Ubuntu_Clang_18.1.3_(1ubuntu1))

Compiler output


hash_utils.c: hash_utils.c: In function '_sha2_str':
hash_utils.c: hash_utils.c:29:9: warning: 'SHA512_Init' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
hash_utils.c:    29 |         SHA512_Init( &sha512 );
hash_utils.c:       |         ^~~~~~~~~~~
hash_utils.c: In file included from hash_utils.c:4:
hash_utils.c: /usr/include/openssl/sha.h:123:27: note: declared here
hash_utils.c:   123 | OSSL_DEPRECATEDIN_3_0 int SHA512_Init(SHA512_CTX *c);
hash_utils.c:       |                           ^~~~~~~~~~~
hash_utils.c: hash_utils.c:30:9: warning: 'SHA512_Update' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
hash_utils.c:    30 |         SHA512_Update( &sha512 , m , mlen );
hash_utils.c:       |         ^~~~~~~~~~~~~
hash_utils.c: /usr/include/openssl/sha.h:124:27: note: declared here
hash_utils.c:   124 | OSSL_DEPRECATEDIN_3_0 int SHA512_Update(SHA512_CTX *c,
hash_utils.c:       |                           ^~~~~~~~~~~~~
hash_utils.c: hash_utils.c:31:9: warning: 'SHA512_Final' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
hash_utils.c:    31 |         SHA512_Final( digest , &sha512 );
hash_utils.c:       |         ^~~~~~~~~~~~
hash_utils.c: /usr/include/openssl/sha.h:126:27: note: declared here
hash_utils.c:   126 | OSSL_DEPRECATEDIN_3_0 int SHA512_Final(unsigned char *md, SHA512_CTX *c);
hash_utils.c:       |                           ^~~~~~~~~~~~
hash_utils.c: hash_utils.c: In function 'sha2_file':
hash_utils.c: hash_utils.c:65:9: warning: 'SHA512_Init' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
hash_utils.c:    65 |         SHA512_Init( &sha512 );
hash_utils.c:       |         ^~~~~~~~~~~
hash_utils.c: /usr/include/openssl/sha.h:123:27: note: declared here
hash_utils.c: ...
prng_utils.c: prng_utils.c: In function 'openssl_prng_bytes':
prng_utils.c: prng_utils.c:70:32: warning: implicit declaration of function 'FIPS_mode_set' [-Wimplicit-function-declaration]
prng_utils.c:    70 |                 fips_mode_on = FIPS_mode_set(1);
prng_utils.c:       |                                ^~~~~~~~~~~~~
try.c: /usr/bin/ld: libcrypto_sign_gui448.a(prng_utils.o): in function `openssl_prng_bytes':
try.c: .../supercop-data/hertz/amd64/try/c/gcc_-march=native_-mtune=native_-O2_-fwrapv_-fPIC_-fPIE_-gdwarf-4_-Wall/timingleaks/crypto_sign/gui448/amd64/work/prng_utils.c:70:(.text+0x...): undefined reference to `FIPS_mode_set'
try.c: collect2: error: ld returned 1 exit status

Number of similar (implementation,compiler) pairs: 1, namely:
ImplementationCompiler
T:amd64gcc -march=native -mtune=native -O2 -fwrapv -fPIC -fPIE -gdwarf-4 -Wall (13.2.0)

Compiler output


hash_utils.c: hash_utils.c: In function '_sha2_str':
hash_utils.c: hash_utils.c:29:9: warning: 'SHA512_Init' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
hash_utils.c:    29 |         SHA512_Init( &sha512 );
hash_utils.c:       |         ^~~~~~~~~~~
hash_utils.c: In file included from hash_utils.c:4:
hash_utils.c: /usr/include/openssl/sha.h:123:27: note: declared here
hash_utils.c:   123 | OSSL_DEPRECATEDIN_3_0 int SHA512_Init(SHA512_CTX *c);
hash_utils.c:       |                           ^~~~~~~~~~~
hash_utils.c: hash_utils.c:30:9: warning: 'SHA512_Update' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
hash_utils.c:    30 |         SHA512_Update( &sha512 , m , mlen );
hash_utils.c:       |         ^~~~~~~~~~~~~
hash_utils.c: /usr/include/openssl/sha.h:124:27: note: declared here
hash_utils.c:   124 | OSSL_DEPRECATEDIN_3_0 int SHA512_Update(SHA512_CTX *c,
hash_utils.c:       |                           ^~~~~~~~~~~~~
hash_utils.c: hash_utils.c:31:9: warning: 'SHA512_Final' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
hash_utils.c:    31 |         SHA512_Final( digest , &sha512 );
hash_utils.c:       |         ^~~~~~~~~~~~
hash_utils.c: /usr/include/openssl/sha.h:126:27: note: declared here
hash_utils.c:   126 | OSSL_DEPRECATEDIN_3_0 int SHA512_Final(unsigned char *md, SHA512_CTX *c);
hash_utils.c:       |                           ^~~~~~~~~~~~
hash_utils.c: hash_utils.c: In function 'sha2_file':
hash_utils.c: hash_utils.c:65:9: warning: 'SHA512_Init' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
hash_utils.c:    65 |         SHA512_Init( &sha512 );
hash_utils.c:       |         ^~~~~~~~~~~
hash_utils.c: /usr/include/openssl/sha.h:123:27: note: declared here
hash_utils.c: ...
prng_utils.c: prng_utils.c: In function 'openssl_prng_bytes':
prng_utils.c: prng_utils.c:70:32: warning: implicit declaration of function 'FIPS_mode_set' [-Wimplicit-function-declaration]
prng_utils.c:    70 |                 fips_mode_on = FIPS_mode_set(1);
prng_utils.c:       |                                ^~~~~~~~~~~~~
try.c: /usr/bin/ld: libcrypto_sign_gui448.a(prng_utils.o): in function `openssl_prng_bytes':
try.c: .../supercop-data/hertz/amd64/try/c/gcc_-march=native_-mtune=native_-O3_-fwrapv_-fPIC_-fPIE_-gdwarf-4_-Wall/timingleaks/crypto_sign/gui448/amd64/work/prng_utils.c:70:(.text+0x...): undefined reference to `FIPS_mode_set'
try.c: collect2: error: ld returned 1 exit status

Number of similar (implementation,compiler) pairs: 1, namely:
ImplementationCompiler
T:amd64gcc -march=native -mtune=native -O3 -fwrapv -fPIC -fPIE -gdwarf-4 -Wall (13.2.0)

Compiler output


hash_utils.c: hash_utils.c: In function '_sha2_str':
hash_utils.c: hash_utils.c:29:9: warning: 'SHA512_Init' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
hash_utils.c:    29 |         SHA512_Init( &sha512 );
hash_utils.c:       |         ^~~~~~~~~~~
hash_utils.c: In file included from hash_utils.c:4:
hash_utils.c: /usr/include/openssl/sha.h:123:27: note: declared here
hash_utils.c:   123 | OSSL_DEPRECATEDIN_3_0 int SHA512_Init(SHA512_CTX *c);
hash_utils.c:       |                           ^~~~~~~~~~~
hash_utils.c: hash_utils.c:30:9: warning: 'SHA512_Update' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
hash_utils.c:    30 |         SHA512_Update( &sha512 , m , mlen );
hash_utils.c:       |         ^~~~~~~~~~~~~
hash_utils.c: /usr/include/openssl/sha.h:124:27: note: declared here
hash_utils.c:   124 | OSSL_DEPRECATEDIN_3_0 int SHA512_Update(SHA512_CTX *c,
hash_utils.c:       |                           ^~~~~~~~~~~~~
hash_utils.c: hash_utils.c:31:9: warning: 'SHA512_Final' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
hash_utils.c:    31 |         SHA512_Final( digest , &sha512 );
hash_utils.c:       |         ^~~~~~~~~~~~
hash_utils.c: /usr/include/openssl/sha.h:126:27: note: declared here
hash_utils.c:   126 | OSSL_DEPRECATEDIN_3_0 int SHA512_Final(unsigned char *md, SHA512_CTX *c);
hash_utils.c:       |                           ^~~~~~~~~~~~
hash_utils.c: hash_utils.c: In function 'sha2_file':
hash_utils.c: hash_utils.c:65:9: warning: 'SHA512_Init' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
hash_utils.c:    65 |         SHA512_Init( &sha512 );
hash_utils.c:       |         ^~~~~~~~~~~
hash_utils.c: /usr/include/openssl/sha.h:123:27: note: declared here
hash_utils.c: ...
prng_utils.c: prng_utils.c: In function 'openssl_prng_bytes':
prng_utils.c: prng_utils.c:70:32: warning: implicit declaration of function 'FIPS_mode_set' [-Wimplicit-function-declaration]
prng_utils.c:    70 |                 fips_mode_on = FIPS_mode_set(1);
prng_utils.c:       |                                ^~~~~~~~~~~~~
try.c: /usr/bin/ld: libcrypto_sign_gui448.a(prng_utils.o): in function `openssl_prng_bytes':
try.c: .../supercop-data/hertz/amd64/try/c/gcc_-march=native_-mtune=native_-Os_-fwrapv_-fPIC_-fPIE_-gdwarf-4_-Wall/timingleaks/crypto_sign/gui448/amd64/work/prng_utils.c:70:(.text+0x...): undefined reference to `FIPS_mode_set'
try.c: collect2: error: ld returned 1 exit status

Number of similar (implementation,compiler) pairs: 1, namely:
ImplementationCompiler
T:amd64gcc -march=native -mtune=native -Os -fwrapv -fPIC -fPIE -gdwarf-4 -Wall (13.2.0)

Compiler output


hash_utils.c: hash_utils.c: In function '_sha2_str':
hash_utils.c: hash_utils.c:29:9: warning: 'SHA512_Init' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
hash_utils.c:    29 |         SHA512_Init( &sha512 );
hash_utils.c:       |         ^~~~~~~~~~~
hash_utils.c: In file included from hash_utils.c:4:
hash_utils.c: /usr/include/openssl/sha.h:123:27: note: declared here
hash_utils.c:   123 | OSSL_DEPRECATEDIN_3_0 int SHA512_Init(SHA512_CTX *c);
hash_utils.c:       |                           ^~~~~~~~~~~
hash_utils.c: hash_utils.c:30:9: warning: 'SHA512_Update' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
hash_utils.c:    30 |         SHA512_Update( &sha512 , m , mlen );
hash_utils.c:       |         ^~~~~~~~~~~~~
hash_utils.c: /usr/include/openssl/sha.h:124:27: note: declared here
hash_utils.c:   124 | OSSL_DEPRECATEDIN_3_0 int SHA512_Update(SHA512_CTX *c,
hash_utils.c:       |                           ^~~~~~~~~~~~~
hash_utils.c: hash_utils.c:31:9: warning: 'SHA512_Final' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
hash_utils.c:    31 |         SHA512_Final( digest , &sha512 );
hash_utils.c:       |         ^~~~~~~~~~~~
hash_utils.c: /usr/include/openssl/sha.h:126:27: note: declared here
hash_utils.c:   126 | OSSL_DEPRECATEDIN_3_0 int SHA512_Final(unsigned char *md, SHA512_CTX *c);
hash_utils.c:       |                           ^~~~~~~~~~~~
hash_utils.c: hash_utils.c: In function 'sha2_file':
hash_utils.c: hash_utils.c:65:9: warning: 'SHA512_Init' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
hash_utils.c:    65 |         SHA512_Init( &sha512 );
hash_utils.c:       |         ^~~~~~~~~~~
hash_utils.c: /usr/include/openssl/sha.h:123:27: note: declared here
hash_utils.c: ...
prng_utils.c: prng_utils.c: In function 'openssl_prng_bytes':
prng_utils.c: prng_utils.c:70:32: warning: implicit declaration of function 'FIPS_mode_set' [-Wimplicit-function-declaration]
prng_utils.c:    70 |                 fips_mode_on = FIPS_mode_set(1);
prng_utils.c:       |                                ^~~~~~~~~~~~~
try.c: /usr/bin/ld: libcrypto_sign_gui448.a(prng_utils.o): in function `openssl_prng_bytes':
try.c: .../supercop-data/hertz/amd64/try/c/gcc_-march=native_-mtune=native_-O2_-fwrapv_-fPIC_-fPIE_-gdwarf-4_-Wall/timingleaks/crypto_sign/gui448/pclmulqdq/work/prng_utils.c:70:(.text+0x...): undefined reference to `FIPS_mode_set'
try.c: collect2: error: ld returned 1 exit status

Number of similar (implementation,compiler) pairs: 1, namely:
ImplementationCompiler
T:pclmulqdqgcc -march=native -mtune=native -O2 -fwrapv -fPIC -fPIE -gdwarf-4 -Wall (13.2.0)

Compiler output


hash_utils.c: hash_utils.c: In function '_sha2_str':
hash_utils.c: hash_utils.c:29:9: warning: 'SHA512_Init' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
hash_utils.c:    29 |         SHA512_Init( &sha512 );
hash_utils.c:       |         ^~~~~~~~~~~
hash_utils.c: In file included from hash_utils.c:4:
hash_utils.c: /usr/include/openssl/sha.h:123:27: note: declared here
hash_utils.c:   123 | OSSL_DEPRECATEDIN_3_0 int SHA512_Init(SHA512_CTX *c);
hash_utils.c:       |                           ^~~~~~~~~~~
hash_utils.c: hash_utils.c:30:9: warning: 'SHA512_Update' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
hash_utils.c:    30 |         SHA512_Update( &sha512 , m , mlen );
hash_utils.c:       |         ^~~~~~~~~~~~~
hash_utils.c: /usr/include/openssl/sha.h:124:27: note: declared here
hash_utils.c:   124 | OSSL_DEPRECATEDIN_3_0 int SHA512_Update(SHA512_CTX *c,
hash_utils.c:       |                           ^~~~~~~~~~~~~
hash_utils.c: hash_utils.c:31:9: warning: 'SHA512_Final' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
hash_utils.c:    31 |         SHA512_Final( digest , &sha512 );
hash_utils.c:       |         ^~~~~~~~~~~~
hash_utils.c: /usr/include/openssl/sha.h:126:27: note: declared here
hash_utils.c:   126 | OSSL_DEPRECATEDIN_3_0 int SHA512_Final(unsigned char *md, SHA512_CTX *c);
hash_utils.c:       |                           ^~~~~~~~~~~~
hash_utils.c: hash_utils.c: In function 'sha2_file':
hash_utils.c: hash_utils.c:65:9: warning: 'SHA512_Init' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
hash_utils.c:    65 |         SHA512_Init( &sha512 );
hash_utils.c:       |         ^~~~~~~~~~~
hash_utils.c: /usr/include/openssl/sha.h:123:27: note: declared here
hash_utils.c: ...
prng_utils.c: prng_utils.c: In function 'openssl_prng_bytes':
prng_utils.c: prng_utils.c:70:32: warning: implicit declaration of function 'FIPS_mode_set' [-Wimplicit-function-declaration]
prng_utils.c:    70 |                 fips_mode_on = FIPS_mode_set(1);
prng_utils.c:       |                                ^~~~~~~~~~~~~
try.c: /usr/bin/ld: libcrypto_sign_gui448.a(prng_utils.o): in function `openssl_prng_bytes':
try.c: .../supercop-data/hertz/amd64/try/c/gcc_-march=native_-mtune=native_-O3_-fwrapv_-fPIC_-fPIE_-gdwarf-4_-Wall/timingleaks/crypto_sign/gui448/pclmulqdq/work/prng_utils.c:70:(.text+0x...): undefined reference to `FIPS_mode_set'
try.c: collect2: error: ld returned 1 exit status

Number of similar (implementation,compiler) pairs: 1, namely:
ImplementationCompiler
T:pclmulqdqgcc -march=native -mtune=native -O3 -fwrapv -fPIC -fPIE -gdwarf-4 -Wall (13.2.0)

Compiler output


hash_utils.c: hash_utils.c: In function '_sha2_str':
hash_utils.c: hash_utils.c:29:9: warning: 'SHA512_Init' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
hash_utils.c:    29 |         SHA512_Init( &sha512 );
hash_utils.c:       |         ^~~~~~~~~~~
hash_utils.c: In file included from hash_utils.c:4:
hash_utils.c: /usr/include/openssl/sha.h:123:27: note: declared here
hash_utils.c:   123 | OSSL_DEPRECATEDIN_3_0 int SHA512_Init(SHA512_CTX *c);
hash_utils.c:       |                           ^~~~~~~~~~~
hash_utils.c: hash_utils.c:30:9: warning: 'SHA512_Update' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
hash_utils.c:    30 |         SHA512_Update( &sha512 , m , mlen );
hash_utils.c:       |         ^~~~~~~~~~~~~
hash_utils.c: /usr/include/openssl/sha.h:124:27: note: declared here
hash_utils.c:   124 | OSSL_DEPRECATEDIN_3_0 int SHA512_Update(SHA512_CTX *c,
hash_utils.c:       |                           ^~~~~~~~~~~~~
hash_utils.c: hash_utils.c:31:9: warning: 'SHA512_Final' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
hash_utils.c:    31 |         SHA512_Final( digest , &sha512 );
hash_utils.c:       |         ^~~~~~~~~~~~
hash_utils.c: /usr/include/openssl/sha.h:126:27: note: declared here
hash_utils.c:   126 | OSSL_DEPRECATEDIN_3_0 int SHA512_Final(unsigned char *md, SHA512_CTX *c);
hash_utils.c:       |                           ^~~~~~~~~~~~
hash_utils.c: hash_utils.c: In function 'sha2_file':
hash_utils.c: hash_utils.c:65:9: warning: 'SHA512_Init' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
hash_utils.c:    65 |         SHA512_Init( &sha512 );
hash_utils.c:       |         ^~~~~~~~~~~
hash_utils.c: /usr/include/openssl/sha.h:123:27: note: declared here
hash_utils.c: ...
prng_utils.c: prng_utils.c: In function 'openssl_prng_bytes':
prng_utils.c: prng_utils.c:70:32: warning: implicit declaration of function 'FIPS_mode_set' [-Wimplicit-function-declaration]
prng_utils.c:    70 |                 fips_mode_on = FIPS_mode_set(1);
prng_utils.c:       |                                ^~~~~~~~~~~~~
try.c: /usr/bin/ld: libcrypto_sign_gui448.a(prng_utils.o): in function `openssl_prng_bytes':
try.c: .../supercop-data/hertz/amd64/try/c/gcc_-march=native_-mtune=native_-Os_-fwrapv_-fPIC_-fPIE_-gdwarf-4_-Wall/timingleaks/crypto_sign/gui448/pclmulqdq/work/prng_utils.c:70:(.text+0x...): undefined reference to `FIPS_mode_set'
try.c: collect2: error: ld returned 1 exit status

Number of similar (implementation,compiler) pairs: 1, namely:
ImplementationCompiler
T:pclmulqdqgcc -march=native -mtune=native -Os -fwrapv -fPIC -fPIE -gdwarf-4 -Wall (13.2.0)

Compiler output


hash_utils.c: hash_utils.c: In function '_sha2_str':
hash_utils.c: hash_utils.c:29:9: warning: 'SHA512_Init' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
hash_utils.c:    29 |         SHA512_Init( &sha512 );
hash_utils.c:       |         ^~~~~~~~~~~
hash_utils.c: In file included from hash_utils.c:4:
hash_utils.c: /usr/include/openssl/sha.h:123:27: note: declared here
hash_utils.c:   123 | OSSL_DEPRECATEDIN_3_0 int SHA512_Init(SHA512_CTX *c);
hash_utils.c:       |                           ^~~~~~~~~~~
hash_utils.c: hash_utils.c:30:9: warning: 'SHA512_Update' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
hash_utils.c:    30 |         SHA512_Update( &sha512 , m , mlen );
hash_utils.c:       |         ^~~~~~~~~~~~~
hash_utils.c: /usr/include/openssl/sha.h:124:27: note: declared here
hash_utils.c:   124 | OSSL_DEPRECATEDIN_3_0 int SHA512_Update(SHA512_CTX *c,
hash_utils.c:       |                           ^~~~~~~~~~~~~
hash_utils.c: hash_utils.c:31:9: warning: 'SHA512_Final' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
hash_utils.c:    31 |         SHA512_Final( digest , &sha512 );
hash_utils.c:       |         ^~~~~~~~~~~~
hash_utils.c: /usr/include/openssl/sha.h:126:27: note: declared here
hash_utils.c:   126 | OSSL_DEPRECATEDIN_3_0 int SHA512_Final(unsigned char *md, SHA512_CTX *c);
hash_utils.c:       |                           ^~~~~~~~~~~~
hash_utils.c: hash_utils.c: In function 'sha2_file':
hash_utils.c: hash_utils.c:65:9: warning: 'SHA512_Init' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
hash_utils.c:    65 |         SHA512_Init( &sha512 );
hash_utils.c:       |         ^~~~~~~~~~~
hash_utils.c: /usr/include/openssl/sha.h:123:27: note: declared here
hash_utils.c: ...
prng_utils.c: prng_utils.c: In function 'openssl_prng_bytes':
prng_utils.c: prng_utils.c:70:32: warning: implicit declaration of function 'FIPS_mode_set' [-Wimplicit-function-declaration]
prng_utils.c:    70 |                 fips_mode_on = FIPS_mode_set(1);
prng_utils.c:       |                                ^~~~~~~~~~~~~
try.c: /usr/bin/ld: libcrypto_sign_gui448.a(prng_utils.o): in function `openssl_prng_bytes':
try.c: .../supercop-data/hertz/amd64/try/c/gcc_-march=native_-mtune=native_-O2_-fwrapv_-fPIC_-fPIE_-gdwarf-4_-Wall/timingleaks/crypto_sign/gui448/ref/work/prng_utils.c:70:(.text+0x...): undefined reference to `FIPS_mode_set'
try.c: collect2: error: ld returned 1 exit status

Number of similar (implementation,compiler) pairs: 1, namely:
ImplementationCompiler
T:refgcc -march=native -mtune=native -O2 -fwrapv -fPIC -fPIE -gdwarf-4 -Wall (13.2.0)

Compiler output


hash_utils.c: hash_utils.c: In function '_sha2_str':
hash_utils.c: hash_utils.c:29:9: warning: 'SHA512_Init' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
hash_utils.c:    29 |         SHA512_Init( &sha512 );
hash_utils.c:       |         ^~~~~~~~~~~
hash_utils.c: In file included from hash_utils.c:4:
hash_utils.c: /usr/include/openssl/sha.h:123:27: note: declared here
hash_utils.c:   123 | OSSL_DEPRECATEDIN_3_0 int SHA512_Init(SHA512_CTX *c);
hash_utils.c:       |                           ^~~~~~~~~~~
hash_utils.c: hash_utils.c:30:9: warning: 'SHA512_Update' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
hash_utils.c:    30 |         SHA512_Update( &sha512 , m , mlen );
hash_utils.c:       |         ^~~~~~~~~~~~~
hash_utils.c: /usr/include/openssl/sha.h:124:27: note: declared here
hash_utils.c:   124 | OSSL_DEPRECATEDIN_3_0 int SHA512_Update(SHA512_CTX *c,
hash_utils.c:       |                           ^~~~~~~~~~~~~
hash_utils.c: hash_utils.c:31:9: warning: 'SHA512_Final' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
hash_utils.c:    31 |         SHA512_Final( digest , &sha512 );
hash_utils.c:       |         ^~~~~~~~~~~~
hash_utils.c: /usr/include/openssl/sha.h:126:27: note: declared here
hash_utils.c:   126 | OSSL_DEPRECATEDIN_3_0 int SHA512_Final(unsigned char *md, SHA512_CTX *c);
hash_utils.c:       |                           ^~~~~~~~~~~~
hash_utils.c: hash_utils.c: In function 'sha2_file':
hash_utils.c: hash_utils.c:65:9: warning: 'SHA512_Init' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
hash_utils.c:    65 |         SHA512_Init( &sha512 );
hash_utils.c:       |         ^~~~~~~~~~~
hash_utils.c: /usr/include/openssl/sha.h:123:27: note: declared here
hash_utils.c: ...
prng_utils.c: prng_utils.c: In function 'openssl_prng_bytes':
prng_utils.c: prng_utils.c:70:32: warning: implicit declaration of function 'FIPS_mode_set' [-Wimplicit-function-declaration]
prng_utils.c:    70 |                 fips_mode_on = FIPS_mode_set(1);
prng_utils.c:       |                                ^~~~~~~~~~~~~
try.c: /usr/bin/ld: libcrypto_sign_gui448.a(prng_utils.o): in function `openssl_prng_bytes':
try.c: .../supercop-data/hertz/amd64/try/c/gcc_-march=native_-mtune=native_-O3_-fwrapv_-fPIC_-fPIE_-gdwarf-4_-Wall/timingleaks/crypto_sign/gui448/ref/work/prng_utils.c:70:(.text+0x...): undefined reference to `FIPS_mode_set'
try.c: collect2: error: ld returned 1 exit status

Number of similar (implementation,compiler) pairs: 1, namely:
ImplementationCompiler
T:refgcc -march=native -mtune=native -O3 -fwrapv -fPIC -fPIE -gdwarf-4 -Wall (13.2.0)

Compiler output


hash_utils.c: hash_utils.c: In function '_sha2_str':
hash_utils.c: hash_utils.c:29:9: warning: 'SHA512_Init' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
hash_utils.c:    29 |         SHA512_Init( &sha512 );
hash_utils.c:       |         ^~~~~~~~~~~
hash_utils.c: In file included from hash_utils.c:4:
hash_utils.c: /usr/include/openssl/sha.h:123:27: note: declared here
hash_utils.c:   123 | OSSL_DEPRECATEDIN_3_0 int SHA512_Init(SHA512_CTX *c);
hash_utils.c:       |                           ^~~~~~~~~~~
hash_utils.c: hash_utils.c:30:9: warning: 'SHA512_Update' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
hash_utils.c:    30 |         SHA512_Update( &sha512 , m , mlen );
hash_utils.c:       |         ^~~~~~~~~~~~~
hash_utils.c: /usr/include/openssl/sha.h:124:27: note: declared here
hash_utils.c:   124 | OSSL_DEPRECATEDIN_3_0 int SHA512_Update(SHA512_CTX *c,
hash_utils.c:       |                           ^~~~~~~~~~~~~
hash_utils.c: hash_utils.c:31:9: warning: 'SHA512_Final' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
hash_utils.c:    31 |         SHA512_Final( digest , &sha512 );
hash_utils.c:       |         ^~~~~~~~~~~~
hash_utils.c: /usr/include/openssl/sha.h:126:27: note: declared here
hash_utils.c:   126 | OSSL_DEPRECATEDIN_3_0 int SHA512_Final(unsigned char *md, SHA512_CTX *c);
hash_utils.c:       |                           ^~~~~~~~~~~~
hash_utils.c: hash_utils.c: In function 'sha2_file':
hash_utils.c: hash_utils.c:65:9: warning: 'SHA512_Init' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
hash_utils.c:    65 |         SHA512_Init( &sha512 );
hash_utils.c:       |         ^~~~~~~~~~~
hash_utils.c: /usr/include/openssl/sha.h:123:27: note: declared here
hash_utils.c: ...
prng_utils.c: prng_utils.c: In function 'openssl_prng_bytes':
prng_utils.c: prng_utils.c:70:32: warning: implicit declaration of function 'FIPS_mode_set' [-Wimplicit-function-declaration]
prng_utils.c:    70 |                 fips_mode_on = FIPS_mode_set(1);
prng_utils.c:       |                                ^~~~~~~~~~~~~
try.c: /usr/bin/ld: libcrypto_sign_gui448.a(prng_utils.o): in function `openssl_prng_bytes':
try.c: .../supercop-data/hertz/amd64/try/c/gcc_-march=native_-mtune=native_-Os_-fwrapv_-fPIC_-fPIE_-gdwarf-4_-Wall/timingleaks/crypto_sign/gui448/ref/work/prng_utils.c:70:(.text+0x...): undefined reference to `FIPS_mode_set'
try.c: collect2: error: ld returned 1 exit status

Number of similar (implementation,compiler) pairs: 1, namely:
ImplementationCompiler
T:refgcc -march=native -mtune=native -Os -fwrapv -fPIC -fPIE -gdwarf-4 -Wall (13.2.0)