Quellcode durchsuchen

minor semantic updates

Ugochukwu Mmaduekwe vor 6 Jahren
Ursprung
Commit
d39fcffbfe

+ 0 - 1
CryptoLib/src/Asn1/Sec/ClpSecNamedCurves.pas

@@ -802,7 +802,6 @@ begin
   begin
     result := GetByOid(oid);
   end;
-
 end;
 
 class function TSecNamedCurves.GetName(const oid: IDerObjectIdentifier): String;

+ 1 - 1
CryptoLib/src/Security/ClpCipherUtilities.pas

@@ -55,7 +55,7 @@ uses
 resourcestring
   SMechanismNil = 'Mechanism Cannot be Nil';
   SAlgorithmNil = 'Algorithm Cannot be Nil';
-  SUnRecognizedCipher = '"Cipher " %s Not Recognised.';
+  SUnRecognizedCipher = 'Cipher "%s" Not Recognised.';
   SSICModeWarning =
     'Warning: SIC-Mode Can Become a TwoTime-Pad if the Blocksize of the Cipher is Too Small. Use a Cipher With a Block Size of at Least 128 bits (e.g. AES)';
   SModeAndPaddingNotNeededStreamCipher =

+ 1 - 1
CryptoLib/src/Security/ClpDigestUtilities.pas

@@ -40,7 +40,7 @@ uses
 
 resourcestring
   SMechanismNil = 'Mechanism Cannot be Nil';
-  SUnRecognizedDigest = '"Digest " %s not recognised.';
+  SUnRecognizedDigest = 'Digest "%s" not recognised.';
 
 type
   TDigestUtilities = class sealed(TObject)

+ 1 - 1
CryptoLib/src/Security/ClpMacUtilities.pas

@@ -37,7 +37,7 @@ uses
   ClpCryptoLibTypes;
 
 resourcestring
-  SUnRecognizedMac = '"Mac " %s not recognised.';
+  SUnRecognizedMac = 'Mac "%s" not recognised.';
 
 type
   TMacUtilities = class sealed(TObject)