Key
class Key
Key helpers.
Methods
                    static string
                
                
                    encode(string $key)
        
                                            
                
            Converts a binary key into its hexadecimal representation.
                    static string
                
                
                    decode(string $key)
        
                                            
                
            Converts a hexadecimal key into its binary representation.
                    static string
                
                
                    generate(int $length = 32)
        
                                            
                
            Generates a key.
                    static string
                
                
                    generateEncoded(int $length = 32)
        
                                            
                
            Generates a hex encoded key.
Details
        at         line 29
                static            string
    encode(string $key)
        
    
    Converts a binary key into its hexadecimal representation.
        at         line 40
                static            string
    decode(string $key)
        
    
    Converts a hexadecimal key into its binary representation.
        at         line 56
                static            string
    generate(int $length = 32)
        
    
    Generates a key.
        at         line 67
                static            string
    generateEncoded(int $length = 32)
        
    
    Generates a hex encoded key.