mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
crypto.ecdsa: migrate core routines for signing (and verifying), it now requires using OpenSSL 3 (#23705)
This commit is contained in:
parent
7e5b58d8d8
commit
66e1d14bb4
6 changed files with 242 additions and 22 deletions
|
@ -253,6 +253,7 @@ pub fn new_test_session(_vargs string, will_compile bool) TestSession {
|
|||
skip_files << 'vlib/crypto/ecdsa/ecdsa_test.v' // requires OpenSSL
|
||||
skip_files << 'vlib/crypto/ecdsa/util_test.v' // requires OpenSSL
|
||||
skip_files << 'vlib/crypto/ecdsa/example/ecdsa_seed_test.v' // requires OpenSSL
|
||||
skip_files << 'vlib/crypto/ecdsa/example/ensure_compatibility_with_net_openssl_test.v' // requires OpenSSL
|
||||
$if tinyc {
|
||||
skip_files << 'examples/database/orm.v' // try fix it
|
||||
}
|
||||
|
@ -285,6 +286,7 @@ pub fn new_test_session(_vargs string, will_compile bool) TestSession {
|
|||
skip_files << 'vlib/crypto/ecdsa/ecdsa_test.v' // requires OpenSSL
|
||||
skip_files << 'vlib/crypto/ecdsa/util_test.v' // requires OpenSSL
|
||||
skip_files << 'vlib/crypto/ecdsa/example/ecdsa_seed_test.v' // requires OpenSSL
|
||||
skip_files << 'vlib/crypto/ecdsa/example/ensure_compatibility_with_net_openssl_test.v' // requires OpenSSL
|
||||
skip_files << 'vlib/x/ttf/ttf_test.v'
|
||||
skip_files << 'vlib/encoding/iconv/iconv_test.v' // needs libiconv to be installed
|
||||
}
|
||||
|
@ -293,6 +295,7 @@ pub fn new_test_session(_vargs string, will_compile bool) TestSession {
|
|||
skip_files << 'vlib/crypto/ecdsa/ecdsa_test.v' // requires OpenSSL
|
||||
skip_files << 'vlib/crypto/ecdsa/util_test.v' // requires OpenSSL
|
||||
skip_files << 'vlib/crypto/ecdsa/example/ecdsa_seed_test.v' // requires OpenSSL
|
||||
skip_files << 'vlib/crypto/ecdsa/example/ensure_compatibility_with_net_openssl_test.v' // requires OpenSSL
|
||||
// Fails compilation with: `/usr/bin/ld: /lib/x86_64-linux-gnu/libpthread.so.0: error adding symbols: DSO missing from command line`
|
||||
skip_files << 'examples/sokol/sounds/simple_sin_tones.v'
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue