@@ -24,7 +24,7 @@ cryptography implementation. This option comes with significant draw backs:
24
24
* Custom implementations of cryptographic algorithms requires domain experts
25
25
and extensive security reviews.
26
26
* A Javascript implementation is unlikely to achieve performance comparable to
27
- the native crytography algorithms shipped with the browser.
27
+ the native cryptography algorithms shipped with the browser.
28
28
* A Javascript implementation would need to use WebWorker to off-load
29
29
computation from the main-thread, while the browsers native implementation
30
30
can do this for free.
@@ -38,7 +38,7 @@ for golang, this package will not provide low-level access to underlying
38
38
primitives. However, most Dart developers are also unlikely to need such
39
39
advanced features for using a modern Web API.
40
40
41
- Crytography is not simple, and should not be simplfied
41
+ Cryptography is not simple, and should not be simplified
42
42
------------------------------------------------------
43
43
This isn't entirely true of course, cryptography isn't so hard _ if_ you know
44
44
what you're doing. If you don't know what you're doing, then you shouldn't be
@@ -74,7 +74,7 @@ This does not follow `package:crypto` by implementing `Converter<S,T>`
74
74
because ` convert() ` cannot be asynchronous as required by WebCrypto.
75
75
76
76
Besides users (hint Flutter) would likely prefer to avoid heavy computations
77
- like crypto on the main-thread. Even if an initial implemention doesn't move
77
+ like crypto on the main-thread. Even if an initial implementation doesn't move
78
78
computation off-the-mainthread, it would be preferable to keep the option open
79
79
by returning futures.
80
80
0 commit comments