Remove comment on non-canonical encodings in CompressedMontgomeryU.decompress().

This commit is contained in:
Isis Lovecruft 2017-10-05 02:27:27 +00:00
parent 4965238b5a
commit d39e47ff11
Failed to extract signature

View file

@ -120,7 +120,6 @@ impl CompressedMontgomeryU {
/// A projective `MontgomeryPoint` corresponding to this compressed point.
pub fn decompress(&self) -> MontgomeryPoint {
MontgomeryPoint{
// XXX is it a problem here if we're not using a canonical encoding? —isis
U: FieldElement::from_bytes(&self.0),
W: FieldElement::one(),
}