Skip to content

Commit 112e545

Browse files
authored
Merge pull request #73 from omahs/patch-1
Fix: typos
2 parents 0cf402c + 576a277 commit 112e545

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ The `secp256k1` submodule provides a library for elliptic curve operations on
180180
the curve secp256k1. For detailed documentation, follow [README of `noble-secp256k1`](https://github.com/paulmillr/noble-secp256k1), which the module uses as a backend.
181181

182182
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
184184
compromised. We strongly recommend using `utils.randomPrivateKey()` to generate them.
185185

186186
```js
@@ -263,7 +263,7 @@ The `hdkey` submodule provides a library for keys derivation according to
263263
It has almost the exact same API than the version `1.x` of
264264
[`hdkey` from cryptocoinjs](https://github.com/cryptocoinjs/hdkey),
265265
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.
267267
The implementation is [loosely based on hdkey, which has MIT License](#LICENSE).
268268

269269
## BIP39 Mnemonic Seed Phrase
@@ -360,7 +360,7 @@ To encrypt new data, we recommend using the default.
360360
### How to use the IV parameter
361361

362362
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.
364364

365365
You can generate a new `iv` using the `random` module.
366366

@@ -435,7 +435,7 @@ console.log(Uint8Array.from(ecdsaSign(msgHash, privateKey).signature));
435435

436436
## Missing cryptographic primitives
437437

438-
This package intentionally excludes the the cryptographic primitives necessary
438+
This package intentionally excludes the cryptographic primitives necessary
439439
to implement the following EIPs:
440440

441441
* [EIP 196: Precompiled contracts for addition and scalar multiplication on the elliptic curve alt_bn128](https://eips.ethereum.org/EIPS/eip-196)

0 commit comments

Comments
 (0)