實現雜湊機制。
Implement hash mechanism.
新增雜湊工廠實例至 DI 容器中。
-
Add hash factory instance to DI container
builder.Services.AddSingleton<IHashFactory, HashFactory>(); // or Hash-based Message Authentication Code, HMAC builder.Services.AddSingleton<IHmacFactory, HmacFactory>();
注入
IHashFactory
(orIHmacAlgorithm
) 並建立IHashAlgorithm
(orIHmacFactory
) 來雜湊資料。
- Create
IHashAlgorithm
(orIHmacAlgorithm
) with injectedIHashFactory
(orIHmacFactory
) to hash your data.