mirror of
https://github.com/saymrwulf/anza-cryptography-source.git
synced 2026-09-06 20:41:07 +00:00
10 lines
281 B
Rust
10 lines
281 B
Rust
|
|
//! Build time diagnostics
|
||
|
|
|
||
|
|
// simd was assumed over overridden
|
||
|
|
#[cfg(curve25519_backend = "simd")]
|
||
|
|
compile_error!("curve25519_backend is 'simd'");
|
||
|
|
|
||
|
|
// 64 bits target_pointer_width was assumed or overridden
|
||
|
|
#[cfg(curve25519_bits = "64")]
|
||
|
|
compile_error!("curve25519_bits is '64'");
|