Browse Source

modify method visibility.

Ugochukwu Mmaduekwe 6 years ago
parent
commit
ecc3056db9
1 changed files with 3 additions and 3 deletions
  1. 3 3
      CryptoLib/src/Math/EC/Rfc8032/ClpEd25519.pas

+ 3 - 3
CryptoLib/src/Math/EC/Rfc8032/ClpEd25519.pas

@@ -291,9 +291,6 @@ type
     class procedure PruneScalar(const n: TCryptoLibByteArray; nOff: Int32;
     class procedure PruneScalar(const n: TCryptoLibByteArray; nOff: Int32;
       const r: TCryptoLibByteArray); static; inline;
       const r: TCryptoLibByteArray); static; inline;
 
 
-    class procedure ScalarMult(const k: TCryptoLibByteArray;
-      var p: TPointAffine; var r: TPointAccum); static;
-
     class function ReduceScalar(const n: TCryptoLibByteArray)
     class function ReduceScalar(const n: TCryptoLibByteArray)
       : TCryptoLibByteArray; static;
       : TCryptoLibByteArray; static;
 
 
@@ -399,6 +396,9 @@ type
     const pk: TCryptoLibByteArray; pkOff: Int32; const ctx: TCryptoLibByteArray;
     const pk: TCryptoLibByteArray; pkOff: Int32; const ctx: TCryptoLibByteArray;
     const ph: IDigest): Boolean; overload;
     const ph: IDigest): Boolean; overload;
 
 
+  class procedure ScalarMult(const k: TCryptoLibByteArray; var p: TPointAffine;
+    var r: TPointAccum); static;
+
   end;
   end;
 
 
 implementation
 implementation