Weak hands cannot be planted, meager skills have no foundation. Shallow wisdom is futile, how can one hope for a good name?扰扰从役倦，屑屑身事微。少壮轻年月，迟暮惜光辉。
<html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><?php

namespace Hostinger\Reach\Setup;

class Encrypt {
    public const ENCRYPT_METHOD = 'AES-256-CBC';

    public static function encrypt( string $value ): string {
        if ( ! self::can_encrypt() ) {
            return base64_encode( $value );
        }

        $key       = hash( 'sha256', AUTH_KEY, true );
        $iv        = openssl_random_pseudo_bytes( openssl_cipher_iv_length( self::ENCRYPT_METHOD ) );
        $encrypted = openssl_encrypt( $value, self::ENCRYPT_METHOD, $key, 0, $iv );

        return base64_encode( $iv . $encrypted );
    }

    public static function decrypt( string $value ): string {
        if ( ! self::can_encrypt() ) {
            return base64_decode( $value );
        }
        $iv_length = openssl_cipher_iv_length( self::ENCRYPT_