This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ------------------------------------------------------------------------------ | |
// <auto-generated> | |
//Generated by avrogen, version 1.7.7.5 | |
//Changes to this file may cause incorrect behavior and will be lost if code | |
//is regenerated | |
// </auto-generated> | |
// ------------------------------------------------------------------------------ | |
namespace homelync | |
{ | |
using System; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class SecuredPassword | |
{ | |
private const int saltSize = 256; | |
private readonly byte[] hash; | |
private readonly byte[] salt; | |
public byte[] Hash | |
{ | |
get { return hash; } | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace System.Web | |
{ | |
using System.IO; | |
/// <summary> | |
/// Extension methods for HTTP Request. | |
/// <remarks> | |
/// See the HTTP 1.1 specification http://www.w3.org/Protocols/rfc2616/rfc2616.html | |
/// for details of implementation decisions. | |
/// </remarks> |