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

github.com/westberliner/checksum.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/Model/Algorithms.js')
-rw-r--r--src/Model/Algorithms.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/Model/Algorithms.js b/src/Model/Algorithms.js
new file mode 100644
index 0000000..7e6b6e5
--- /dev/null
+++ b/src/Model/Algorithms.js
@@ -0,0 +1,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' },
+]