mirror of
https://github.com/saymrwulf/risc0-curve25519-dalek-source.git
synced 2026-09-04 20:03:40 +00:00
Credit @DebugSteven as an author.
This commit is contained in:
parent
a58b4cf189
commit
c9a1ef6a36
5 changed files with 15 additions and 8 deletions
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "x25519-dalek"
|
||||
version = "0.3.0"
|
||||
authors = ["Isis Lovecruft <isis@patternsinthevoid.net>"]
|
||||
authors = ["Isis Lovecruft <isis@patternsinthevoid.net>", "DebugSteven <debugsteven@gmail.com>"]
|
||||
readme = "README.md"
|
||||
license = "BSD-3-Clause"
|
||||
repository = "https://github.com/dalek-cryptography/x25519-dalek"
|
||||
|
|
|
|||
3
LICENSE
3
LICENSE
|
|
@ -1,4 +1,5 @@
|
|||
Copyright (c) 2017 Isis Agora Lovecruft. All rights reserved.
|
||||
Copyright (c) 2017-2019 isis agora lovecruft. All rights reserved.
|
||||
Copyright (c) 2019 DebugSteven. All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are
|
||||
|
|
|
|||
|
|
@ -1,11 +1,13 @@
|
|||
// -*- mode: rust; -*-
|
||||
//
|
||||
// This file is part of x25519-dalek.
|
||||
// Copyright (c) 2017 Isis Lovecruft
|
||||
// Copyright (c) 2017-2019 isis agora lovecruft
|
||||
// Copyright (c) 2019 DebugSteven
|
||||
// See LICENSE for licensing information.
|
||||
//
|
||||
// Authors:
|
||||
// - Isis Agora Lovecruft <isis@patternsinthevoid.net>
|
||||
// - isis agora lovecruft <isis@patternsinthevoid.net>
|
||||
// - DebugSteven <debugsteven@gmail.com>
|
||||
|
||||
//! Benchmark the Diffie-Hellman operation.
|
||||
|
||||
|
|
|
|||
|
|
@ -1,11 +1,13 @@
|
|||
// -*- mode: rust; -*-
|
||||
//
|
||||
// This file is part of x25519-dalek.
|
||||
// Copyright (c) 2017 Isis Lovecruft
|
||||
// Copyright (c) 2017-2019 isis lovecruft
|
||||
// Copyright (c) 2019 DebugSteven
|
||||
// See LICENSE for licensing information.
|
||||
//
|
||||
// Authors:
|
||||
// - Isis Agora Lovecruft <isis@patternsinthevoid.net>
|
||||
// - isis agora lovecruft <isis@patternsinthevoid.net>
|
||||
// - DebugSteven <debugsteven@gmail.com>
|
||||
|
||||
// Refuse to compile if documentation is missing, but only on nightly.
|
||||
//
|
||||
|
|
|
|||
|
|
@ -1,11 +1,13 @@
|
|||
// -*- mode: rust; -*-
|
||||
//
|
||||
// This file is part of x25519-dalek.
|
||||
// Copyright (c) 2017 Isis Lovecruft
|
||||
// Copyright (c) 2017-2019 isis lovecruft
|
||||
// Copyright (c) 2019 DebugSteven
|
||||
// See LICENSE for licensing information.
|
||||
//
|
||||
// Authors:
|
||||
// - Isis Agora Lovecruft <isis@patternsinthevoid.net>
|
||||
// - isis agora lovecruft <isis@patternsinthevoid.net>
|
||||
// - DebugSteven <debugsteven@gmail.com>
|
||||
|
||||
//! x25519 Diffie-Hellman key exchange
|
||||
//!
|
||||
|
|
|
|||
Loading…
Reference in a new issue