mirror of
https://github.com/saymrwulf/curve25519-dalek-source.git
synced 2026-09-04 20:24:10 +00:00
Impl TryFrom<&[u8]> for all compressed point types.
This reduces copy-pasta in downstream users to check the length of the slice beforehand.
This commit is contained in:
parent
82ea371b19
commit
a7f317a2b8
2 changed files with 32 additions and 2 deletions
|
|
@ -93,6 +93,7 @@
|
|||
#![allow(non_snake_case)]
|
||||
|
||||
use core::borrow::Borrow;
|
||||
use core::convert::TryFrom;
|
||||
use core::fmt::Debug;
|
||||
use core::iter::Iterator;
|
||||
use core::iter::Sum;
|
||||
|
|
@ -335,12 +336,26 @@ impl Default for CompressedEdwardsY {
|
|||
}
|
||||
}
|
||||
|
||||
impl TryFrom<&[u8]> for CompressedEdwardsY {
|
||||
type Error = ();
|
||||
|
||||
fn try_from(bytes: &[u8]) -> Result<CompressedEdwardsY, ()> {
|
||||
if bytes.len() != 32 {
|
||||
return Err(());
|
||||
}
|
||||
|
||||
Ok(CompressedEdwardsY::from_slice(bytes))
|
||||
}
|
||||
}
|
||||
|
||||
impl CompressedEdwardsY {
|
||||
/// Construct a `CompressedEdwardsY` from a slice of bytes.
|
||||
///
|
||||
/// # Panics
|
||||
///
|
||||
/// If the input `bytes` slice does not have a length of 32.
|
||||
/// If the input `bytes` slice does not have a length of 32. For
|
||||
/// a panic-safe version of this API, see the implementation of
|
||||
/// `TryFrom<&[u8]`.
|
||||
pub fn from_slice(bytes: &[u8]) -> CompressedEdwardsY {
|
||||
let mut tmp = [0u8; 32];
|
||||
|
||||
|
|
|
|||
|
|
@ -158,6 +158,7 @@
|
|||
//! https://ristretto.group/
|
||||
|
||||
use core::borrow::Borrow;
|
||||
use core::convert::TryFrom;
|
||||
use core::fmt::Debug;
|
||||
use core::iter::Sum;
|
||||
use core::ops::{Add, Neg, Sub};
|
||||
|
|
@ -217,6 +218,18 @@ impl ConstantTimeEq for CompressedRistretto {
|
|||
}
|
||||
}
|
||||
|
||||
impl TryFrom<&[u8]> for CompressedRistretto {
|
||||
type Error = ();
|
||||
|
||||
fn try_from(bytes: &[u8]) -> Result<CompressedRistretto, ()> {
|
||||
if bytes.len() != 32 {
|
||||
return Err(());
|
||||
}
|
||||
|
||||
Ok(CompressedRistretto::from_slice(bytes))
|
||||
}
|
||||
}
|
||||
|
||||
impl CompressedRistretto {
|
||||
/// Copy the bytes of this `CompressedRistretto`.
|
||||
pub fn to_bytes(&self) -> [u8; 32] {
|
||||
|
|
@ -232,7 +245,9 @@ impl CompressedRistretto {
|
|||
///
|
||||
/// # Panics
|
||||
///
|
||||
/// If the input `bytes` slice does not have a length of 32.
|
||||
/// If the input `bytes` slice does not have a length of 32. For a
|
||||
/// panic-safe version of this API, see the implementation of
|
||||
/// `TryFrom<&[u8]>`.
|
||||
pub fn from_slice(bytes: &[u8]) -> CompressedRistretto {
|
||||
let mut tmp = [0u8; 32];
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue