Implementing Data Masking in Spring Boot Applications
Implementing Data Masking in Spring Boot Applications
Data masking is a critical technique for protecting sensitive information in modern information systems. By transforming or obscuring data, it ensures that sensitive details remain confidential while maintaining usability. This article demonstrates how to implement data masking within a Spri ...
Posted on Sat, 06 Jun 2026 16:49:25 +0000 by Big_Rog
Secure Asset Protection Using SM2, SM3, and SM4 Cryptographic Schemes
Protected Assets
Official Documents
Documents are secured using SM4 encryption. A unique SM4 key is derived per file and used for both encryption and integrity hashing.
file_key = fetch_or_create_key(file_location) # SM4 secret key
cipher_and_digest(file_path, file_key, file_location)
User Passwords
Passwords are stored as salted hashes based ...
Posted on Fri, 29 May 2026 20:46:09 +0000 by pixelsoul