PHP Classes

File: uploady/vendor/robthree/twofactorauth/lib/Algorithm.php

Recommend this page to a friend!
  Classes of Faris AL-Otabi   Uploady PHP Upload File to MySQL   uploady/vendor/robthree/twofactorauth/lib/Algorithm.php   Download  
File: uploady/vendor/robthree/twofactorauth/lib/Algorithm.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: Uploady PHP Upload File to MySQL
Store file upload details in a MySQL database
Author: By
Last change:
Date: 14 days ago
Size: 242 bytes
 

 

Contents

Class file image Download
<?php

declare(strict_types=1);

namespace
RobThree\Auth;

/**
 * List of supported cryptographic algorithms
 */
enum Algorithm: string
{
    case
Md5 = 'md5';
    case
Sha1 = 'sha1';
    case
Sha256 = 'sha256';
    case
Sha512 = 'sha512';
}