forked from zkcrypto/jubjub
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
188 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
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,52 @@ | ||
extern crate alloc; | ||
|
||
use alloc::string::String; | ||
|
||
use serde::{de::Error, Deserialize, Deserializer, Serialize, Serializer}; | ||
|
||
use crate::{AffinePoint, ExtendedPoint}; | ||
|
||
impl Serialize for AffinePoint { | ||
fn serialize<S: Serializer>( | ||
&self, | ||
serializer: S, | ||
) -> Result<S::Ok, S::Error> { | ||
let s = hex::encode(self.to_bytes()); | ||
serializer.serialize_str(&s) | ||
} | ||
} | ||
|
||
impl<'de> Deserialize<'de> for AffinePoint { | ||
fn deserialize<D: Deserializer<'de>>( | ||
deserializer: D, | ||
) -> Result<Self, D::Error> { | ||
let s = String::deserialize(deserializer)?; | ||
let decoded = hex::decode(&s).map_err(Error::custom)?; | ||
let decoded_len = decoded.len(); | ||
let bytes: [u8; 32] = decoded | ||
.try_into() | ||
.map_err(|_| Error::invalid_length(decoded_len, &"32"))?; | ||
AffinePoint::from_bytes(bytes) | ||
.into_option() | ||
.ok_or(Error::custom( | ||
"Failed to deserialize AffinePoint: invalid AffinePoint", | ||
)) | ||
} | ||
} | ||
|
||
impl Serialize for ExtendedPoint { | ||
fn serialize<S: Serializer>( | ||
&self, | ||
serializer: S, | ||
) -> Result<S::Ok, S::Error> { | ||
AffinePoint::from(self).serialize(serializer) | ||
} | ||
} | ||
|
||
impl<'de> Deserialize<'de> for ExtendedPoint { | ||
fn deserialize<D: Deserializer<'de>>( | ||
deserializer: D, | ||
) -> Result<Self, D::Error> { | ||
AffinePoint::deserialize(deserializer).map(Into::into) | ||
} | ||
} |
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,2 @@ | ||
#[cfg(feature = "serde")] | ||
mod serde; |
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,79 @@ | ||
|
||
use ff::Field; | ||
use group::Group; | ||
|
||
use dusk_jubjub::{AffinePoint, ExtendedPoint, Fr}; | ||
|
||
#[test] | ||
fn affine_point() { | ||
let point = AffinePoint::identity(); | ||
let ser = serde_json::to_string(&point).unwrap(); | ||
let deser = serde_json::from_str(&ser).unwrap(); | ||
assert_eq!(point, deser); | ||
} | ||
|
||
#[test] | ||
fn extended_point() { | ||
let mut rng = rand_core::OsRng; | ||
let point = ExtendedPoint::random(&mut rng); | ||
let ser = serde_json::to_string(&point).unwrap(); | ||
let deser = serde_json::from_str(&ser).unwrap(); | ||
assert_eq!(point, deser); | ||
} | ||
|
||
#[test] | ||
fn fr() { | ||
let mut rng = rand_core::OsRng; | ||
let fr = Fr::random(&mut rng); | ||
let ser = serde_json::to_string(&fr).unwrap(); | ||
let deser = serde_json::from_str(&ser).unwrap(); | ||
assert_eq!(fr, deser); | ||
} | ||
|
||
#[test] | ||
fn wrong_encoded() { | ||
let wrong_encoded = "wrong-encoded"; | ||
|
||
let affine_point: Result<AffinePoint, _> = | ||
serde_json::from_str(&wrong_encoded); | ||
assert!(affine_point.is_err()); | ||
|
||
let extended_point: Result<ExtendedPoint, _> = | ||
serde_json::from_str(&wrong_encoded); | ||
assert!(extended_point.is_err()); | ||
|
||
let fr: Result<Fr, _> = serde_json::from_str(&wrong_encoded); | ||
assert!(fr.is_err()); | ||
} | ||
|
||
#[test] | ||
fn too_long_encoded() { | ||
let length_33_enc = "\"e4ab9de40283a85d6ea0cd0120500697d8b01c71b7b4b520292252d20937000631\""; | ||
|
||
let affine_point: Result<AffinePoint, _> = | ||
serde_json::from_str(&length_33_enc); | ||
assert!(affine_point.is_err()); | ||
|
||
let extended_point: Result<ExtendedPoint, _> = | ||
serde_json::from_str(&length_33_enc); | ||
assert!(extended_point.is_err()); | ||
|
||
let fr: Result<Fr, _> = serde_json::from_str(&length_33_enc); | ||
assert!(fr.is_err()); | ||
} | ||
|
||
#[test] | ||
fn too_short_encoded() { | ||
let length_31_enc = "\"1751c37a1dca7aa4c048fcc6177194243edc3637bae042e167e4285945e046\""; | ||
|
||
let affine_point: Result<AffinePoint, _> = | ||
serde_json::from_str(&length_31_enc); | ||
assert!(affine_point.is_err()); | ||
|
||
let extended_point: Result<ExtendedPoint, _> = | ||
serde_json::from_str(&length_31_enc); | ||
assert!(extended_point.is_err()); | ||
|
||
let fr: Result<Fr, _> = serde_json::from_str(&length_31_enc); | ||
assert!(fr.is_err()); | ||
} |