mirror of
https://github.com/saymrwulf/curve25519-dalek-source.git
synced 2026-09-06 20:41:14 +00:00
Merge branch 'release/1.1.1' into main
This commit is contained in:
commit
3bc0d07a09
6 changed files with 13 additions and 9 deletions
|
|
@ -2,6 +2,10 @@
|
||||||
|
|
||||||
Entries are listed in reverse chronological order.
|
Entries are listed in reverse chronological order.
|
||||||
|
|
||||||
|
## 1.1.1
|
||||||
|
|
||||||
|
* Fix a typo in the README.
|
||||||
|
|
||||||
## 1.1.0
|
## 1.1.0
|
||||||
|
|
||||||
* Add impls of `PartialEq`, `Eq`, and `Hash` for `PublicKey` (by @jack-michaud)
|
* Add impls of `PartialEq`, `Eq`, and `Hash` for `PublicKey` (by @jack-michaud)
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@ edition = "2018"
|
||||||
# - update version in README.md
|
# - update version in README.md
|
||||||
# - update html_root_url
|
# - update html_root_url
|
||||||
# - update CHANGELOG
|
# - update CHANGELOG
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
authors = [
|
authors = [
|
||||||
"Isis Lovecruft <isis@patternsinthevoid.net>",
|
"Isis Lovecruft <isis@patternsinthevoid.net>",
|
||||||
"DebugSteven <debugsteven@gmail.com>",
|
"DebugSteven <debugsteven@gmail.com>",
|
||||||
|
|
|
||||||
4
LICENSE
4
LICENSE
|
|
@ -1,5 +1,5 @@
|
||||||
Copyright (c) 2017-2019 isis agora lovecruft. All rights reserved.
|
Copyright (c) 2017-2021 isis agora lovecruft. All rights reserved.
|
||||||
Copyright (c) 2019 DebugSteven. All rights reserved.
|
Copyright (c) 2019-2021 DebugSteven. All rights reserved.
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
Redistribution and use in source and binary forms, with or without
|
||||||
modification, are permitted provided that the following conditions are
|
modification, are permitted provided that the following conditions are
|
||||||
|
|
|
||||||
|
|
@ -88,7 +88,7 @@ These secrets are the same:
|
||||||
assert_eq!(alice_shared_secret.as_bytes(), bob_shared_secret.as_bytes());
|
assert_eq!(alice_shared_secret.as_bytes(), bob_shared_secret.as_bytes());
|
||||||
```
|
```
|
||||||
|
|
||||||
Voilá! Alice and Bob can now use their shared secret to encrypt their
|
Voilà! Alice and Bob can now use their shared secret to encrypt their
|
||||||
meows, for example, by using it to generate a key and nonce for an
|
meows, for example, by using it to generate a key and nonce for an
|
||||||
authenticated-encryption cipher.
|
authenticated-encryption cipher.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
// -*- mode: rust; -*-
|
// -*- mode: rust; -*-
|
||||||
//
|
//
|
||||||
// This file is part of x25519-dalek.
|
// This file is part of x25519-dalek.
|
||||||
// Copyright (c) 2017-2019 isis lovecruft
|
// Copyright (c) 2017-2021 isis lovecruft
|
||||||
// Copyright (c) 2019 DebugSteven
|
// Copyright (c) 2019-2021 DebugSteven
|
||||||
// See LICENSE for licensing information.
|
// See LICENSE for licensing information.
|
||||||
//
|
//
|
||||||
// Authors:
|
// Authors:
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
#![cfg_attr(feature = "nightly", deny(missing_docs))]
|
#![cfg_attr(feature = "nightly", deny(missing_docs))]
|
||||||
#![cfg_attr(feature = "nightly", doc(include = "../README.md"))]
|
#![cfg_attr(feature = "nightly", doc(include = "../README.md"))]
|
||||||
#![doc(html_logo_url = "https://doc.dalek.rs/assets/dalek-logo-clear.png")]
|
#![doc(html_logo_url = "https://doc.dalek.rs/assets/dalek-logo-clear.png")]
|
||||||
#![doc(html_root_url = "https://docs.rs/x25519-dalek/1.1.0")]
|
#![doc(html_root_url = "https://docs.rs/x25519-dalek/1.1.1")]
|
||||||
|
|
||||||
//! Note that docs will only build on nightly Rust until
|
//! Note that docs will only build on nightly Rust until
|
||||||
//! `feature(external_doc)` is stabilized.
|
//! `feature(external_doc)` is stabilized.
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
// -*- mode: rust; -*-
|
// -*- mode: rust; -*-
|
||||||
//
|
//
|
||||||
// This file is part of x25519-dalek.
|
// This file is part of x25519-dalek.
|
||||||
// Copyright (c) 2017-2019 isis lovecruft
|
// Copyright (c) 2017-2021 isis lovecruft
|
||||||
// Copyright (c) 2019 DebugSteven
|
// Copyright (c) 2019-2021 DebugSteven
|
||||||
// See LICENSE for licensing information.
|
// See LICENSE for licensing information.
|
||||||
//
|
//
|
||||||
// Authors:
|
// Authors:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue