You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
During the build process, I receive the following error:
error[E0277]: the trait bound `(): CryptoRngCore` is not satisfied
--> aurora/src/adapters/libcrux/X25519MLKEM768/keymgmt_functions.rs:290:26
|
290 | self.encapsulate(&mut rng)
| ----------- ^^^^^^^^ the trait `CryptoRng` is not implemented for `()`
| |
| required by a bound introduced by this call
Could someone assist with this issue or suggest any potential fixes?
Thank you!
The text was updated successfully, but these errors were encountered:
At the moment, as we are still in a development phase, it is expected that only the debug builds are successful.
I.e., even after fixing the error you reported above, there are other todo!() lines that are triggered only in release builds which would result in panic/SegFault when loading a "release" build of aurora as a provider in OpenSSL.
We intentionally decided to break release builds, to ensure users are aware this is still in development and not ready for production.
Hello,
I'm encountering an issue when attempting to build the project using the release profile. The command I executed is as follows:
I am using Cargo version 1.84.1.
During the build process, I receive the following error:
Could someone assist with this issue or suggest any potential fixes?
Thank you!
The text was updated successfully, but these errors were encountered: