summary refs log tree commit diff
path: root/crypto/src/crypto/paddings/ISO7816d4Padding.cs
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/src/crypto/paddings/ISO7816d4Padding.cs')
-rw-r--r--crypto/src/crypto/paddings/ISO7816d4Padding.cs27
1 files changed, 6 insertions, 21 deletions
diff --git a/crypto/src/crypto/paddings/ISO7816d4Padding.cs b/crypto/src/crypto/paddings/ISO7816d4Padding.cs
index 7b1834626..987b69439 100644
--- a/crypto/src/crypto/paddings/ISO7816d4Padding.cs
+++ b/crypto/src/crypto/paddings/ISO7816d4Padding.cs
@@ -1,37 +1,22 @@
 using System;
 
-using Org.BouncyCastle.Crypto;
 using Org.BouncyCastle.Security;
 
 namespace Org.BouncyCastle.Crypto.Paddings
 {
-	/**
-	 * A padder that adds the padding according to the scheme referenced in
-	 * ISO 7814-4 - scheme 2 from ISO 9797-1. The first byte is 0x80, rest is 0x00
-	 */
+	/// <summary>
+	/// A padder that adds the padding according to the scheme referenced in ISO 7814-4 - scheme 2 from ISO 9797-1.
+	/// The first byte is 0x80, rest is 0x00
+	/// </summary>
 	public class ISO7816d4Padding
 		: IBlockCipherPadding
 	{
-		/**
-		 * Initialise the padder.
-		 *
-		 * @param random - a SecureRandom if available.
-		 */
-		public void Init(
-			SecureRandom random)
+		public void Init(SecureRandom random)
 		{
 			// nothing to do.
 		}
 
-		/**
-		 * Return the name of the algorithm the padder implements.
-		 *
-		 * @return the name of the algorithm the padder implements.
-		 */
-		public string PaddingName
-		{
-			get { return "ISO7816-4"; }
-		}
+		public string PaddingName => "ISO7816-4";
 
 		public int AddPadding(byte[] input, int inOff)
 		{