From 30382440c2b78ee2be7f3798061a2879b77eec81 Mon Sep 17 00:00:00 2001 From: Dusan Klinec Date: Thu, 16 Aug 2018 02:07:22 +0200 Subject: [PATCH] xmr: crypto - point norm not needed --- src/apps/monero/xmr/crypto.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/apps/monero/xmr/crypto.py b/src/apps/monero/xmr/crypto.py index 7fa8908f1..76ff3556f 100644 --- a/src/apps/monero/xmr/crypto.py +++ b/src/apps/monero/xmr/crypto.py @@ -148,16 +148,6 @@ def point_double(P): return tcry.ge25519_double(P) -def point_norm(P): - """ - Normalizes point after multiplication - Extended edwards coordinates (X,Y,Z,T) - :param P: - :return: - """ - return tcry.ge25519_norm(P) - - # # Zmod(order), scalar values field #