ngraziano / SharpRTSP

A RTSP handling library
Other
557 stars 182 forks source link

The function AuthenticationBasic make a little mistake. #100

Closed towerbit closed 10 months ago

towerbit commented 10 months ago

Login failed for

Line 18 in file AuthenticationBasic.cs return $"Bassic {Convert.ToBase64String(Encoding.UTF8.GetBytes(usernamePasswordHash))}";

It should be return $"Basic {Convert.ToBase64String(Encoding.UTF8.GetBytes(usernamePasswordHash))}";

Anyway, thanks a lot for this wonderful project.

ngraziano commented 10 months ago

Thanks for the find