2016-08-03 10:59:49 +00:00
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
// <copyright file="FormsAuthPasswordFormat.cs" company="Microsoft">
|
|
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
// </copyright>
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/*
|
|
|
|
* AuthenticationConfigHandler class
|
|
|
|
*
|
|
|
|
* Copyright (c) 1999 Microsoft Corporation
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace System.Web.Configuration {
|
|
|
|
|
|
|
|
public enum FormsAuthPasswordFormat {
|
|
|
|
Clear,
|
|
|
|
SHA1,
|
2018-01-24 17:04:36 +00:00
|
|
|
MD5,
|
|
|
|
SHA256,
|
|
|
|
SHA384,
|
|
|
|
SHA512
|
2016-08-03 10:59:49 +00:00
|
|
|
}
|
|
|
|
}
|