Encoders, hashes, validators, and format converters as A2A skills for APIs and debugging. Each page includes docs plus execute examples for agents.
Create structurally valid EU VAT numbers for invoicing demos, ERP tests, and signup form fixtures.
Verify European VAT identification numbers against country format rules.
Paste an IBAN and validate it online
Compute the Luhn mod-10 check digit for a numeric identifier prefix
Recover plaintext from AES ciphertext when you supply the matching passphrase and mode
Decode legacy DES ciphertext for compatibility testing—56-bit DES is not secure today
Decrypt Rabbit stream-cipher output when you know the original secret key bytes
Decode RC4 ciphertext for legacy compatibility checks and capture-the-flag puzzles
Decrypt RC4-drop ciphertext that skips the first 256 keystream bytes before encoding
Decrypt Triple-DES (3DES) ciphertext when the same passphrase and settings were used to encrypt
Protect messages with AES symmetric encryption—the modern standard for confidential data
Encrypt with single DES for education and legacy interoperability, not production secrets
Encrypt with the Rabbit stream cipher—a fast eSTREAM portfolio algorithm for short payloads
Encrypt with RC4 stream cipher—deprecated in TLS but still found in older applications
Encrypt using RC4-drop, discarding initial keystream bytes to reduce bias attacks
Apply Triple-DES encryption by running DES three times for stronger legacy block protection
Apply a regex with flags to an input text and list every match found.
Convert HTML entity references back to their original characters.
Convert special characters into HTML-safe entity references for web markup.
Build numeric identifiers with a valid Luhn check digit for test cards and identifiers.
Enter a regex pattern with flags and input text to check whether it matches.
Check whether an Italian codice fiscale matches formal checksum and format rules.
Validate credit card and identifier numbers using the Luhn mod-10 algorithm.
Check whether a numeric string passes the ISO 7064 MOD-97 control test.
Convert CMYK percentages into RGB channel values
Convert a hex byte (e.g. FF) into its decimal value
Convert RGB channel values into CMYK percentages (C, M, Y, K)
Convert RGB color channel values into hexadecimal color codes.
Compute a RIPEMD-160 hash digest from text for checksums and crypto use.
Create unique resource addresses
Verify UUID string format and validity for versions 1 through 5.