From 91d8d0ec37d129a6d135d0893cf64b5502457280 Mon Sep 17 00:00:00 2001
From: Jacob Marks <100745682+J8k3@users.noreply.github.com>
Date: Sat, 16 May 2026 22:48:21 -0400
Subject: [PATCH] Rename "Parse PIN Block" to "Decode PIN Block"
---
src/core/operations/ParsePINBlock.mjs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/core/operations/ParsePINBlock.mjs b/src/core/operations/ParsePINBlock.mjs
index 62e58182..a7e3e88e 100644
--- a/src/core/operations/ParsePINBlock.mjs
+++ b/src/core/operations/ParsePINBlock.mjs
@@ -17,7 +17,7 @@ class ParsePINBlock extends Operation {
constructor() {
super();
- this.name = "Parse PIN Block";
+ this.name = "Decode PIN Block";
this.module = "Payment";
this.description = "Paste a clear ISO 9564 PIN block into the input field as hex and decode it into its component fields.
Input: 8-byte clear PIN block as hex.
Arguments: choose the format and provide the PAN when the format binds to PAN data.
This operation currently parses clear test PIN blocks for ISO formats 0, 1, and 3.";
this.inlineHelp = "Input: clear PIN block hex.
Args: choose the format and provide the PAN for formats 0 and 3 so the block can be decoded.";