tsibelman / aws-signer-v4-dot-net

Sign HttpRequestMessage using AWS Signature v4 using request information and credentials.
Apache License 2.0
72 stars 27 forks source link

Suggestion: HexConverter.ToString() #30

Open rcollette opened 3 years ago

rcollette commented 3 years ago

You might want to take a look at HexConverter.ToString() for some inspiration.. It's an internal class that does handle lower case byte[] to hex string conversion. It's going to be a bunch faster than a string formatting loop.

ronenfe commented 2 years ago

Hi, can you please give a reference to this class and usage?

rcollette commented 2 years ago

https://github.com/dotnet/runtime/blob/main/src/libraries/Common/src/System/HexConverter.cs#L168