Chromium Code Reviews| Index: sdk/lib/io/http.dart |
| diff --git a/sdk/lib/io/http.dart b/sdk/lib/io/http.dart |
| index 5f6a75a74c54fca7e85c1ffcc04c1fc4358baac8..4ba9388b90fc6d78c2849ab6b1281dbd63055c2f 100644 |
| --- a/sdk/lib/io/http.dart |
| +++ b/sdk/lib/io/http.dart |
| @@ -1282,7 +1282,10 @@ abstract class HttpClientBasicCredentials extends HttpClientCredentials { |
| /** |
| - * Represents credentials for digest authentication. |
| + * Represents credentials for digest authentication. Digest |
| + * authentication is only supported for servers using the MD5 |
| + * algorithm and and quality of protection (qop) of either "none" or |
|
Anders Johnsen
2013/05/02 19:10:19
Double and.
Anders Johnsen
2013/05/02 19:10:19
QoP?
Søren Gjesse
2013/05/03 08:10:36
rfc2617 uses all lowercase.
|
| + * "auth". |
| */ |
| abstract class HttpClientDigestCredentials extends HttpClientCredentials { |
| factory HttpClientDigestCredentials(String username, String password) => |