Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Algorithms.js « Model « src - github.com/westberliner/checksum.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7e6b6e53bd13d0ab6dd36832c78f2ce7da874714 (plain)
1
2
3
4
5
6
7
8
9
10
export default [
	{ id: '', label: t('checksum', 'Choose Algorithm') },
	{ id: 'md5', label: 'MD5' },
	{ id: 'sha1', label: 'SHA1' },
	{ id: 'sha256', label: 'SHA256' },
	{ id: 'sha384', label: 'SHA384' },
	{ id: 'sha512', label: 'SHA512' },
	{ id: 'crc32', label: 'CRC32' },
	{ id: 'crc32b', label: 'CRC32b' },
]