Login to follow
NetChecksumUtils

NetChecksumUtils (ODC)

Stable version 0.9.9 (Compatible with ODC)
Uploaded on 31 Jan by António Pereira
NetChecksumUtils

NetChecksumUtils (ODC)

Documentation
0.9.9

A high-performance OutSystems Extension using the .Net System.Security.Cryptography DLL to provide robust checksum generation and verification for strings and binary data. This extension simplifies data integrity checks by wrapping standard .NET cryptographic providers into easy-to-use Server Actions. This implementation replaces the obsolete "ComputeHash" OutSystems built-in action.


🚀 Features

Multi-Algorithm Support: Generate hashes using MD5, SHA256, SHA3_256, and SHA512.


Hash Algorithms available




🛠 Actions Included

This extension exposes the following Server Actions within Service Studio:


ComputeHash

Generates a checksum for a given input based on the specified algorithm.

  • Input: Value (Text/Binary), Algorithm (Text: MD5, SHA256, etc.)
  • Output: checksum.Hex (Text), checksum.Base64 (Text)


VerifyHash

Compares a plain value against an existing hash to check for integrity.

  • Input: Value (Text/Binary), HashToVerify (Text), Algorithm (Text: MD5, SHA256, etc.)
  • Output: IsValid (Boolean)