get_all_digest_names
- Returns all symbolic names possible to pass to the digest_by_name.
				
				Edit
			
			
							No						
				
				
				Edit
			
			| fields | type | description | 
|---|---|---|
| array_of_names | array of strings | An array of string names of all available digest methods available. | 
				
				Edit
			
			
				
					local security = require("security")
local array_of_names = security.get_all_digest_names()
-- Will return: ["md5', 'md4', 'sha1', 'sha224', sha256', ...]				
			
             
                                    