-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[WIP] Convert signature to
ecdsa::Signature
Signed-off-by: Arthur Gautier <[email protected]>
- Loading branch information
Showing
3 changed files
with
45 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
// Copyright 2024 Contributors to the Parsec project. | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
use crate::{structures::EccSignature, Error, Result, WrapperErrorKind}; | ||
|
||
use std::convert::TryFrom; | ||
|
||
use ecdsa::SignatureSize; | ||
use elliptic_curve::{ | ||
generic_array::{typenum::Unsigned, ArrayLength}, | ||
FieldBytes, FieldBytesSize, PrimeCurve, | ||
}; | ||
|
||
impl<C> TryFrom<EccSignature> for ecdsa::Signature<C> | ||
where | ||
C: PrimeCurve, | ||
SignatureSize<C>: ArrayLength<u8>, | ||
{ | ||
type Error = Error; | ||
|
||
fn try_from(signature: EccSignature) -> Result<Self> { | ||
let r = signature.signature_r().as_slice(); | ||
let s = signature.signature_s().as_slice(); | ||
|
||
if r.len() != FieldBytesSize::<C>::USIZE { | ||
return Err(Error::local_error(WrapperErrorKind::InvalidParam)); | ||
} | ||
if s.len() != FieldBytesSize::<C>::USIZE { | ||
return Err(Error::local_error(WrapperErrorKind::InvalidParam)); | ||
} | ||
|
||
let signature = ecdsa::Signature::from_scalars( | ||
FieldBytes::<C>::from_slice(r).clone(), | ||
FieldBytes::<C>::from_slice(s).clone(), | ||
) | ||
.map_err(|_| Error::local_error(WrapperErrorKind::InvalidParam))?; | ||
Ok(signature) | ||
} | ||
} | ||
|
||
// TODO(baloo): impl TryFrom<RsaSignature> for rsa::pkcs1v15::Signature | ||
// TODO(baloo): impl TryFrom<RsaSignature> for rsa::pss::Signature |