Skip to content

Commit 8f12c38

Browse files
committed
Updates
1 parent 732f927 commit 8f12c38

File tree

2 files changed

+162
-82
lines changed

2 files changed

+162
-82
lines changed

aspnetcore/blazor/security/qrcodes-for-authenticator-apps.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ uid: blazor/security/qrcodes-for-authenticator-apps
1111

1212
[!INCLUDE[](~/includes/not-latest-version-without-not-supported-content.md)]
1313

14-
This article explains how to configure an ASP.NET Core Blazor Web App with QR code generation for TOTP authenticator apps.
14+
This article explains how to configure an ASP.NET Core Blazor Web App with QR code generation for Time-based One-time Password Algorithm (TOTP) authenticator apps.
1515

16-
For an introduction to two-factor authentication (2FA) with authenticator apps using a Time-based One-time Password Algorithm (TOTP), see <xref:security/authentication/identity-enable-qrcodes>.
16+
For an introduction to two-factor authentication (2FA) using a TOTP authenticator app, see <xref:security/authentication/identity-enable-qrcodes>.
1717

1818
> [!WARNING]
19-
> An ASP.NET Core TOTP code should be kept secret because it can be used to authenticate successfully multiple times before it expires.
19+
> TOTP codes should be kept secret because it can be used to authenticate successfully multiple times before it expires.
2020
2121
## Scaffold the Enable Authenticator component into the app
2222

@@ -33,11 +33,11 @@ For more information, see <xref:security/authentication/scaffold-identity>. For
3333

3434
## Adding QR codes to the 2FA configuration page
3535

36-
The QR code used by 2FA authenticator apps to configure the app to creates TOTP codes must be generated by a QR code library.
36+
QR codes for use by TOTP authenticator apps must be generated by a QR code library.
3737

38-
The guidance in this article uses [qr-creator](https://github.com/nimiq/qr-creator), but you can use any general QR code generation library.
38+
The guidance in this article uses [`nimiq/qr-creator`](https://github.com/nimiq/qr-creator), but you can use any general QR code generation library.
3939

40-
Download the [`qr-creator.min.js`](https://cdn.jsdelivr.net/npm/qr-creator/dist/qr-creator.min.js) library to the solution's server project. The library has no dependencies. If you intend to use the library to generate other QR codes elsewhere in the app for your own purposes, there's also a module version of the library available from the maintainer.
40+
Download the [`qr-creator.min.js`](https://cdn.jsdelivr.net/npm/qr-creator/dist/qr-creator.min.js) library to the solution's server project. The library has no dependencies. If you intend to use the library to generate other QR codes elsewhere in the app for your own purposes, there's also a module version of the library available from the maintainer (see the [`nimiq/qr-creator`](https://github.com/nimiq/qr-creator) GitHub repository for details).
4141

4242
In the `App` component (`Components/App.razor`), place a library script reference after [Blazor's `<script>` tag](xref:blazor/project-structure#location-of-the-blazor-script):
4343

0 commit comments

Comments
 (0)