1 implementation of GetPasswordHashAsync
Microsoft.Extensions.Identity.Stores (1)
UserStoreBase.cs (1)
288public virtual Task<string?> GetPasswordHashAsync(TUser user, CancellationToken cancellationToken = default(CancellationToken))
2 references to GetPasswordHashAsync
Microsoft.Extensions.Identity.Core (2)
UserManager.cs (2)
853var hash = await passwordStore.GetPasswordHashAsync(user, CancellationToken).ConfigureAwait(false); 952var hash = await store.GetPasswordHashAsync(user, CancellationToken).ConfigureAwait(false);