mirror of
https://github.com/saymrwulf/risc0-curve25519-dalek-source.git
synced 2026-09-04 20:03:40 +00:00
18 lines
360 B
Rust
18 lines
360 B
Rust
|
|
// -*- mode: rust; -*-
|
||
|
|
//
|
||
|
|
// This file is part of ed25519-dalek.
|
||
|
|
// Copyright (c) 2017-2018 isis lovecruft
|
||
|
|
// See LICENSE for licensing information.
|
||
|
|
//
|
||
|
|
// Authors:
|
||
|
|
// - isis agora lovecruft <isis@patternsinthevoid.net>
|
||
|
|
|
||
|
|
//! Integration tests for ed25519-dalek.
|
||
|
|
|
||
|
|
extern crate ed25519_dalek;
|
||
|
|
extern crate hex;
|
||
|
|
extern crate rand;
|
||
|
|
extern crate sha2;
|
||
|
|
|
||
|
|
mod ed25519;
|