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