[HKDF.Standard](https://github.com/andreimilto/HKDF.Standard) claims to be 2.6 - 6.7 times faster than NSec. @andreimilto Any quick thoughts on why NSec is so much slower? https://github.com/andreimilto/HKDF.Standard/blob/67f5f1078b4be61746047a57842d2fa1ea042377/src/HkdfStandard.Benchmark/KeyDerivationBenchmark.cs#L121-L127 Is it the `SharedSecret.Import` or the `DeriveBytes` call?
HKDF.Standard claims to be 2.6 - 6.7 times faster than NSec.
@andreimilto Any quick thoughts on why NSec is so much slower?
https://github.com/andreimilto/HKDF.Standard/blob/67f5f1078b4be61746047a57842d2fa1ea042377/src/HkdfStandard.Benchmark/KeyDerivationBenchmark.cs#L121-L127
Is it the
SharedSecret.Importor theDeriveBytescall?