1010
1111This library contains implementations of secure hash functions, checksum generators, and key derivation algorithms optimized for Dart.
1212
13- ## Depencencies
13+ ## Dependencies
1414
1515There is only 1 dependency used by this package:
1616
@@ -68,7 +68,7 @@ There is only 1 dependency used by this package:
6868| Algorithms | Available methods | Source |
6969| ---------- | ------------------------- | --------- |
7070| CRC | ` crc16 ` , ` crc32 ` , ` crc64 ` | Wikipedia |
71- | Alder32 | ` alder32 ` | Wikipedia |
71+ | Adler32 | ` adler32 ` | Wikipedia |
7272
7373### Random Algorithm
7474
@@ -118,7 +118,7 @@ Check the [API Reference](https://pub.dev/documentation/hashlib/latest/) for det
118118
119119Examples can be found inside the ` example ` folder.
120120
121- ### Hashilb Example
121+ ### Hashlib Example
122122
123123``` dart
124124import 'package:hashlib/codecs.dart';
@@ -140,7 +140,7 @@ void main() {
140140 // Example of hash-code generations
141141 print('XXH32 => ${xxh32code(text)}');
142142 print('CRC32 => ${crc32code(text)}');
143- print('Alder32 => ${alder32code (text)}');
143+ print('Adler32 => ${adler32code (text)}');
144144 print('CRC16 => ${crc16code(text)}');
145145 print('');
146146
@@ -171,7 +171,7 @@ void main() {
171171 print('SHAKE-256 => ${shake256.of(20).string(text)}');
172172 print('BLAKE2s-256 => ${blake2s256.string(text)}');
173173 print('BLAKE2b-512 => ${blake2b512.string(text)}');
174- print('SM3] => ${sm3.string(text)}');
174+ print('SM3 => ${sm3.string(text)}');
175175 print('');
176176
177177 // Examples of MAC generations
0 commit comments