ngraziano / SharpRTSP

A RTSP handling library
Other
519 stars 181 forks source link

The function AuthenticationBasic make a little mistake. #100

Closed towerbit closed 5 months ago

towerbit commented 5 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 5 months ago

Thanks for the find