We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60f55a6 commit 2f1498dCopy full SHA for 2f1498d
tests/ecdsa/t_ecdsa_verify_openssl.nim
@@ -19,7 +19,7 @@ import
19
constantine/platforms/abstractions,
20
constantine/ecdsa_secp256k1
21
22
-when not defined(windows):
+when not defined(windows) or not defined(macosx):
23
# Windows (at least in GH actions CI) does not provide, among others `BN_new`
24
# so we disable this test for Windows for the time being.
25
import ../openssl_wrapper
@@ -65,7 +65,7 @@ func getPublicKey(secKey: SecretKey): PublicKey {.noinit.} =
65
66
template toOA(x: string): untyped = toOpenArrayByte(x, 0, x.len-1)
67
68
-when not defined(windows): # see above
+when not defined(windows) or not defined(macosx): # see above
69
proc signAndVerify(num: int, msg = "", nonceSampler = nsRandom) =
70
## Generates `num` signatures and verify them against OpenSSL.
71
##
0 commit comments