我需要验证在VB.NET中发送到我的HttpListener的基本授权标头。我正在抓住标题(请随时指出更好的方法):
EncodedAuth = Context.Request.Headers.GetValues("Authorization")(1)
现在如何解码它们?我理解the theory但我似乎找不到合适的代码。
谢谢。
答案 0 :(得分:9)
应该这样做......
basicData = System.Text.ASCIIEncoding.ASCII.GetString( System.Convert.FromBase64String( EncodedAuth ) )
这将为您提供“username:password”格式的字符串。将字符串拆分为“:”,您将获得凭据。