Skip to content

Commit

Permalink
Improve non-secure docs
Browse files Browse the repository at this point in the history
  • Loading branch information
ai committed Mar 25, 2023
1 parent 46d7cab commit c79ee96
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ in the next part of the documentation.

By default, Nano ID uses hardware random bytes generation for security
and low collision probability. If you are not so concerned with security,
you can use the faster non-secure generator.
you can use it for environments without hardware random generators.

```js
import { nanoid } from 'nanoid/non-secure'
Expand Down
6 changes: 3 additions & 3 deletions README.ru.md
Original file line number Diff line number Diff line change
Expand Up @@ -235,9 +235,9 @@ async function createUser() {

По умолчанию, Nano ID использует аппаратный генератор случайных чисел для
получения непредсказуемых ID и минимизации риска возникновения коллизий
(повторной генерации ранее выданных ID).
Но если вам не требуется устойчивость к подбору ID,
то вы можете перейти на небезопасный генератор.
(повторной генерации ранее выданных ID). Но если вам не требуется устойчивость
к подбору ID, то вы можете перейти на небезопасный генератор — это полезно
там, где нет доступа к API аппаратного генератора случайных чисел.

```js
import { nanoid } from 'nanoid/non-secure'
Expand Down

0 comments on commit c79ee96

Please sign in to comment.