Implementation notes: riscv64, riscvunleashed000, crypto_sign/ecdonaldp224

Computer: riscvunleashed000
Microarchitecture: riscv64; U54 (sifive,u54-mc)
Architecture: riscv64
CPU ID: unknown CPU ID
SUPERCOP version: 20240107
Operation: crypto_sign
Primitive: ecdonaldp224

Compiler output

Implementation: T:openssl
Security model: timingleaks
Compiler: clang -march=rv64imafdc -mtune=native -O2 -fomit-frame-pointer -fwrapv -Qunused-arguments -fPIC -fPIE
keypair.c: keypair.c:20:7: warning: 'EC_KEY_new' is deprecated [-Wdeprecated-declarations]
keypair.c: k = EC_KEY_new(); if (!k) { BN_free(ky); BN_free(kx); return -1; }
keypair.c: ^
keypair.c: /usr/include/openssl/ec.h:968:1: note: 'EC_KEY_new' has been explicitly marked deprecated here
keypair.c: OSSL_DEPRECATEDIN_3_0 EC_KEY *EC_KEY_new(void);
keypair.c: ^
keypair.c: /usr/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
keypair.c: # 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: # 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: if (!EC_KEY_set_group(k,group)) goto error;
keypair.c: ^
keypair.c: /usr/include/openssl/ec.h:1042:1: note: 'EC_KEY_set_group' has been explicitly marked deprecated here
keypair.c: 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:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
keypair.c: # 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: # 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: ...

Number of similar (compiler,implementation) pairs: 5, namely:
CompilerImplementations
clang -march=rv64imafdc -mtune=native -O2 -fomit-frame-pointer -fwrapv -Qunused-arguments -fPIC -fPIE T:openssl
clang -march=rv64imafdc -mtune=native -O3 -fomit-frame-pointer -fwrapv -Qunused-arguments -fPIC -fPIE T:openssl
clang -march=rv64imafdc -mtune=native -O -fomit-frame-pointer -fwrapv -Qunused-arguments -fPIC -fPIE T:openssl
clang -march=rv64imafdc -mtune=native -Os -fomit-frame-pointer -fwrapv -Qunused-arguments -fPIC -fPIE T:openssl
clang -mcpu=native -O3 -fomit-frame-pointer -fwrapv -Qunused-arguments -fPIC -fPIE T:openssl

Compiler output

Implementation: T:openssl
Security model: timingleaks
Compiler: gcc -mcpu=sifive-u54 -O2 -fomit-frame-pointer -fwrapv -fPIC -fPIE
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:968:31: note: declared here
keypair.c: 968 | 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: In file included from /usr/include/openssl/ecdsa.h:10,
keypair.c: from keypair.c:3:
keypair.c: /usr/include/openssl/ec.h:1042:27: note: declared here
keypair.c: 1042 | 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: In file included from /usr/include/openssl/ecdsa.h:10,
keypair.c: from keypair.c:3:
keypair.c: /usr/include/openssl/ec.h:1101:27: note: declared here
keypair.c: 1101 | OSSL_DEPRECATEDIN_3_0 int EC_KEY_generate_key(EC_KEY *key);
keypair.c: | ^~~~~~~~~~~~~~~~~~~
keypair.c: ...

Number of similar (compiler,implementation) pairs: 4, namely:
CompilerImplementations
gcc -mcpu=sifive-u54 -O2 -fomit-frame-pointer -fwrapv -fPIC -fPIE T:openssl
gcc -mcpu=sifive-u54 -O3 -fomit-frame-pointer -fwrapv -fPIC -fPIE T:openssl
gcc -mcpu=sifive-u54 -O -fomit-frame-pointer -fwrapv -fPIC -fPIE T:openssl
gcc -mcpu=sifive-u54 -Os -fomit-frame-pointer -fwrapv -fPIC -fPIE T:openssl

Compiler output

Implementation: T:opensslnew
Security model: timingleaks
Compiler: clang -march=rv64imafdc -mtune=native -O2 -fomit-frame-pointer -fwrapv -Qunused-arguments -fPIC -fPIE
keypair.c: keypair.c:23:7: warning: 'EC_KEY_new' is deprecated [-Wdeprecated-declarations]
keypair.c: k = EC_KEY_new();
keypair.c: ^
keypair.c: /usr/include/openssl/ec.h:968:1: note: 'EC_KEY_new' has been explicitly marked deprecated here
keypair.c: OSSL_DEPRECATEDIN_3_0 EC_KEY *EC_KEY_new(void);
keypair.c: ^
keypair.c: /usr/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
keypair.c: # 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: # 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: if (!EC_KEY_set_group(k,group)) goto error;
keypair.c: ^
keypair.c: /usr/include/openssl/ec.h:1042:1: note: 'EC_KEY_set_group' has been explicitly marked deprecated here
keypair.c: 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:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
keypair.c: # 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: # 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: ...

Number of similar (compiler,implementation) pairs: 5, namely:
CompilerImplementations
clang -march=rv64imafdc -mtune=native -O2 -fomit-frame-pointer -fwrapv -Qunused-arguments -fPIC -fPIE T:opensslnew
clang -march=rv64imafdc -mtune=native -O3 -fomit-frame-pointer -fwrapv -Qunused-arguments -fPIC -fPIE T:opensslnew
clang -march=rv64imafdc -mtune=native -O -fomit-frame-pointer -fwrapv -Qunused-arguments -fPIC -fPIE T:opensslnew
clang -march=rv64imafdc -mtune=native -Os -fomit-frame-pointer -fwrapv -Qunused-arguments -fPIC -fPIE T:opensslnew
clang -mcpu=native -O3 -fomit-frame-pointer -fwrapv -Qunused-arguments -fPIC -fPIE T:opensslnew

Compiler output

Implementation: T:opensslnew
Security model: timingleaks
Compiler: gcc -mcpu=sifive-u54 -O2 -fomit-frame-pointer -fwrapv -fPIC -fPIE
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:968:31: note: declared here
keypair.c: 968 | 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: In file included from /usr/include/openssl/ecdsa.h:10,
keypair.c: from keypair.c:3:
keypair.c: /usr/include/openssl/ec.h:1042:27: note: declared here
keypair.c: 1042 | 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: In file included from /usr/include/openssl/ecdsa.h:10,
keypair.c: from keypair.c:3:
keypair.c: /usr/include/openssl/ec.h:1101:27: note: declared here
keypair.c: 1101 | OSSL_DEPRECATEDIN_3_0 int EC_KEY_generate_key(EC_KEY *key);
keypair.c: | ^~~~~~~~~~~~~~~~~~~
keypair.c: ...

Number of similar (compiler,implementation) pairs: 3, namely:
CompilerImplementations
gcc -mcpu=sifive-u54 -O2 -fomit-frame-pointer -fwrapv -fPIC -fPIE T:opensslnew
gcc -mcpu=sifive-u54 -O3 -fomit-frame-pointer -fwrapv -fPIC -fPIE T:opensslnew
gcc -mcpu=sifive-u54 -Os -fomit-frame-pointer -fwrapv -fPIC -fPIE T:opensslnew

Compiler output

Implementation: T:opensslnew
Security model: timingleaks
Compiler: gcc -mcpu=sifive-u54 -O -fomit-frame-pointer -fwrapv -fPIC -fPIE
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:968:31: note: declared here
keypair.c: 968 | 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: In file included from /usr/include/openssl/ecdsa.h:10,
keypair.c: from keypair.c:3:
keypair.c: /usr/include/openssl/ec.h:1042:27: note: declared here
keypair.c: 1042 | 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: In file included from /usr/include/openssl/ecdsa.h:10,
keypair.c: from keypair.c:3:
keypair.c: /usr/include/openssl/ec.h:1101:27: note: declared here
keypair.c: 1101 | OSSL_DEPRECATEDIN_3_0 int EC_KEY_generate_key(EC_KEY *key);
keypair.c: | ^~~~~~~~~~~~~~~~~~~
keypair.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: /usr/include/openssl/ec.h:968:31: note: declared here
signatureofshorthash.c: 968 | OSSL_DEPRECATEDIN_3_0 EC_KEY *EC_KEY_new(void);
signatureofshorthash.c: | ^~~~~~~~~~
signatureofshorthash.c: signatureofshorthash.c:39:3: warning: 'EC_KEY_set_group' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
signatureofshorthash.c: 39 | if (!EC_KEY_set_group(k,group)) goto error;
signatureofshorthash.c: | ^~
signatureofshorthash.c: In file included from /usr/include/openssl/ecdsa.h:10,
signatureofshorthash.c: from signatureofshorthash.c:3:
signatureofshorthash.c: /usr/include/openssl/ec.h:1042:27: note: declared here
signatureofshorthash.c: 1042 | OSSL_DEPRECATEDIN_3_0 int EC_KEY_set_group(EC_KEY *key, const EC_GROUP *group);
signatureofshorthash.c: | ^~~~~~~~~~~~~~~~
signatureofshorthash.c: signatureofshorthash.c:42:3: warning: 'EC_KEY_set_private_key' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
signatureofshorthash.c: 42 | if (!EC_KEY_set_private_key(k,kx)) goto error;
signatureofshorthash.c: | ^~
signatureofshorthash.c: In file included from /usr/include/openssl/ecdsa.h:10,
signatureofshorthash.c: from signatureofshorthash.c:3:
signatureofshorthash.c: /usr/include/openssl/ec.h:1056:27: note: declared here
signatureofshorthash.c: 1056 | OSSL_DEPRECATEDIN_3_0 int EC_KEY_set_private_key(EC_KEY *key, const BIGNUM *prv);
signatureofshorthash.c: | ^~~~~~~~~~~~~~~~~~~~~~
signatureofshorthash.c: ...

Number of similar (compiler,implementation) pairs: 1, namely:
CompilerImplementations
gcc -mcpu=sifive-u54 -O -fomit-frame-pointer -fwrapv -fPIC -fPIE T:opensslnew