pub fn read_point<R>(r: &mut R) -> Result<EdwardsPoint, Error>where
R: Read,
Expand description
Read a canonically-encoded Ed25519 point.
This internally calls CompressedPoint::decompress
and has the same definition of canonicity.
This function does not check the resulting point is within the prime-order subgroup.