PHP Package: paragonie/hidden-string

Paragonie's hidden-string library provides secure string handling for PHP applications, enhancing privacy and data protection.

Current Version: 2.2.0
Last Updated: 2024-05-08
PHP Requirement: >=7.1
Dependencies: paragonie/constant_time_encoding, paragonie/sodium_compat
⚠️ To ensure full functionality, the above dependencies might be required.

Package Description

Hidden-string is a PHP library developed by Paragonie that focuses on secure string manipulation and storage, helping developers protect sensitive data from unauthorized access and leaks. It offers a range of features for securely handling strings, such as encryption, masking, and secure comparison algorithms. With hidden-string, developers can strengthen the security of their applications and safeguard user data against various threats and vulnerabilities.

🔗 View on GitHub

Download Latest Version: 2.2.0

Download Download v2.2.0

Code Integration Example

Make sure to include the correct namespace and class paths for proper usage.

<?php

// Example from PHPlibraries.com
require_once 'libs/paragonie/hidden-string/2.2.0/autoload.php';

use ParagonIE\HiddenString\HiddenString;
use ParagonIE\HiddenString\HiddenStringInterface;
use ParagonIE\HiddenString\HiddenStringFactory;
use ParagonIE\HiddenString\Encoding\Base64UrlSafe;
use ParagonIE\HiddenString\Encoding\EncodingInterface;


$obj = new ParagonIE\HiddenString\HiddenString();
echo "✅ Example created successfully.";

?>

We aim to make using PHP packages easier without Composer. If something doesn't work, let us know — we'll fix it promptly.