SproutCMS

This is the code documentation for the SproutCMS project

class admin_authTest

Extending this class

<?php
/**
* New class description goes here
* 
* @author Your Name, 2026-09-16
**/
class NewClassName extends admin_authTest {
    
    /**
    * Does hash creation match hash checking?
    **/
    public function testHashMatchCheck ($alg) {
        // Method code goes here
    }
    
    /**
    * Does two creations create different hashes? (hashes with salts)
    **/
    public function testHashWithSalts ($alg) {
        // Method code goes here
    }
    
    public function testCheckAlgorithm () {
        // Method code goes here
    }
    
    public function dataAlgorithms () {
        // Method code goes here
    }
    
}
?>