auth token endpoint finished

This commit is contained in:
2026-02-06 00:10:00 +01:00
Unverified
parent c5823dc6fc
commit 81455ab636
7 changed files with 49 additions and 53 deletions

View File

@@ -36,4 +36,9 @@ public class PasswordHasher : IPasswordHasher
byte[] hash = hashFunction.GetBytes(32);
return hash;
}
}
}
public record PasswordHashData(
byte[] Hash,
string Salt
);