You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -180,7 +180,7 @@ The `secp256k1` submodule provides a library for elliptic curve operations on
180
180
the curve secp256k1. For detailed documentation, follow [README of `noble-secp256k1`](https://github.com/paulmillr/noble-secp256k1), which the module uses as a backend.
181
181
182
182
secp256k1 private keys need to be cryptographically secure random numbers with
183
-
certain caracteristics. If this is not the case, the security of secp256k1 is
183
+
certain characteristics. If this is not the case, the security of secp256k1 is
184
184
compromised. We strongly recommend using `utils.randomPrivateKey()` to generate them.
185
185
186
186
```js
@@ -263,7 +263,7 @@ The `hdkey` submodule provides a library for keys derivation according to
263
263
It has almost the exact same API than the version `1.x` of
264
264
[`hdkey` from cryptocoinjs](https://github.com/cryptocoinjs/hdkey),
265
265
but it's backed by this package's primitives, and has built-in TypeScript types.
266
-
Its only difference is that it has to be be used with a named import.
266
+
Its only difference is that it has to be used with a named import.
267
267
The implementation is [loosely based on hdkey, which has MIT License](#LICENSE).
268
268
269
269
## BIP39 Mnemonic Seed Phrase
@@ -360,7 +360,7 @@ To encrypt new data, we recommend using the default.
360
360
### How to use the IV parameter
361
361
362
362
The `iv` parameter of the `encrypt` function must be unique, or the security
363
-
of the encryption algorithm can be compromissed.
363
+
of the encryption algorithm can be compromised.
364
364
365
365
You can generate a new `iv` using the `random` module.
0 commit comments