KeyFactory.php 700 Bytes
<?php

namespace NinjaForms\Blocks\Authentication;

/**
 * Creats randomly generated strings for use as public and private keys.
 */
class KeyFactory {

    /**
     * @param int $length
     * 
     * @return string
     */
    public static function make( $length = 40 ) {
        if( 0 >= $length ) $length = 40; // Min key length.
        if( 255 <= $length ) $length = 255; // Max key length.
    
        $characters   = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
        $random_string = '';
        for ( $i = 0; $i < $length; $i ++ ) {
        $random_string .= $characters[ rand( 0, strlen( $characters ) - 1 ) ];
        }
    
        return $random_string;
    }
}