File: crypto_verify_64.rs

package info (click to toggle)
rust-libsodium-sys 0.2.7-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 420 kB
  • sloc: makefile: 10; ansic: 1
file content (11 lines) | stat: -rw-r--r-- 199 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
// crypto_verify_64.h

use libsodium_sys::*;

#[test]
fn test_crypto_verify_64_bytes() {
    assert_eq!(
        unsafe { crypto_verify_64_bytes() },
        crypto_verify_64_BYTES as usize
    );
}