Ugochukwu Mmaduekwe 2 недель назад
Родитель
Сommit
eaf8068460

+ 2 - 2
CryptoLib.Tests/Delphi.Tests/CryptoLib.Tests.dpr

@@ -315,7 +315,7 @@ uses
   ClpIScaleXPointMap in '..\..\CryptoLib\src\Interfaces\Math\EC\ClpIScaleXPointMap.pas',
   ClpIScaleYNegateXPointMap in '..\..\CryptoLib\src\Interfaces\Math\EC\ClpIScaleYNegateXPointMap.pas',
   ClpIScryptParametersGenerator in '..\..\CryptoLib\src\Interfaces\Crypto\Generators\ClpIScryptParametersGenerator.pas',
-  ClpISecAsn1Objects in '..\..\CryptoLib\src\Interfaces\Asn1\Sec\ClpISecAsn1Objects.pas',
+  ClpISecECAsn1Objects in '..\..\CryptoLib\src\Interfaces\Asn1\Sec\ClpISecECAsn1Objects.pas',
   ClpISecP256K1Custom in '..\..\CryptoLib\src\Interfaces\Math\EC\Custom\Sec\ClpISecP256K1Custom.pas',
   ClpISecP256R1Custom in '..\..\CryptoLib\src\Interfaces\Math\EC\Custom\Sec\ClpISecP256R1Custom.pas',
   ClpISecP384R1Custom in '..\..\CryptoLib\src\Interfaces\Math\EC\Custom\Sec\ClpISecP384R1Custom.pas',
@@ -417,7 +417,7 @@ uses
   ClpScaleXPointMap in '..\..\CryptoLib\src\Math\EC\ClpScaleXPointMap.pas',
   ClpScaleYNegateXPointMap in '..\..\CryptoLib\src\Math\EC\ClpScaleYNegateXPointMap.pas',
   ClpScryptParametersGenerator in '..\..\CryptoLib\src\Crypto\Generators\ClpScryptParametersGenerator.pas',
-  ClpSecAsn1Objects in '..\..\CryptoLib\src\Asn1\Sec\ClpSecAsn1Objects.pas',
+  ClpSecECAsn1Objects in '..\..\CryptoLib\src\Asn1\Sec\ClpSecECAsn1Objects.pas',
   ClpSecNamedCurves in '..\..\CryptoLib\src\Asn1\Sec\ClpSecNamedCurves.pas',
   ClpSecObjectIdentifiers in '..\..\CryptoLib\src\Asn1\Sec\ClpSecObjectIdentifiers.pas',
   ClpSecP256K1Custom in '..\..\CryptoLib\src\Math\EC\Custom\Sec\ClpSecP256K1Custom.pas',

+ 2 - 2
CryptoLib/src/Asn1/Sec/ClpSecAsn1Objects.pas → CryptoLib/src/Asn1/Sec/ClpSecECAsn1Objects.pas

@@ -15,7 +15,7 @@
 
 (* &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& *)
 
-unit ClpSecAsn1Objects;
+unit ClpSecECAsn1Objects;
 
 {$I ..\..\Include\CryptoLib.inc}
 
@@ -29,7 +29,7 @@ uses
   ClpIAsn1Objects,
   ClpAsn1Core,
   ClpIAsn1Core,
-  ClpISecAsn1Objects,
+  ClpISecECAsn1Objects,
   ClpCryptoLibTypes,
   ClpAsn1Utilities;
 

+ 0 - 1
CryptoLib/src/Asn1/X509/ClpX509Asn1Objects.pas

@@ -486,7 +486,6 @@ type
     FExtensions: TDictionary<IDerObjectIdentifier, IX509Extension>;
     FOrdering: TList<IDerObjectIdentifier>;
 
-  strict private
     class var
       FSubjectDirectoryAttributes: IDerObjectIdentifier;
       FSubjectKeyIdentifier: IDerObjectIdentifier;

+ 2 - 2
CryptoLib/src/Factories/ClpPrivateKeyFactory.pas

@@ -44,8 +44,8 @@ uses
   ClpIDsaParameters,
   ClpIX509Asn1Objects,
   ClpX509Asn1Objects,
-  ClpSecAsn1Objects,
-  ClpISecAsn1Objects,
+  ClpSecECAsn1Objects,
+  ClpISecECAsn1Objects,
   ClpBigInteger,
   ClpCryptoLibTypes;
 

+ 1 - 1
CryptoLib/src/Interfaces/Asn1/Sec/ClpISecAsn1Objects.pas → CryptoLib/src/Interfaces/Asn1/Sec/ClpISecECAsn1Objects.pas

@@ -15,7 +15,7 @@
 
 (* &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& *)
 
-unit ClpISecAsn1Objects;
+unit ClpISecECAsn1Objects;
 
 {$I ..\..\..\Include\CryptoLib.inc}