Click here to Skip to main content
Click here to Skip to main content

HttpSecureCookie, A Way to Encrypt Cookies with ASP.NET 2.0

By , 3 Apr 2006
 
httpsecurecookie_demo.zip
Bin
AdamTibi.Web.Security.dll
httpsecurecookie_src.zip
Release
AdamTibi.Web.Security.dll
Properties
using System;
using System.Collections.Generic;
using System.Text;

namespace AdamTibi.Web.Security {

    /// <summary>
    /// Represents errors that occur when a text can't be decoded or the text is tampered 
    /// </summary>
    public class InvalidCypherTextException : Exception {
        
        /// <summary>
        /// Constructor
        /// </summary>
        public InvalidCypherTextException() : base() {
        }

        /// <summary>
        /// Constructor
        /// </summary>
        public InvalidCypherTextException(string message) : base(message) {
        }

        /// <summary>
        /// Constructor
        /// </summary>
        public InvalidCypherTextException(string message, Exception innerException) : base(message, innerException) {
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of use and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Microsoft Public License (Ms-PL)

About the Author

Adam Tibi
Team Leader
United Kingdom United Kingdom
Member
Software Consultant, Lives in Guildford/Surrey, UK.
 
www.AdamTibi.net

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130516.1 | Last Updated 3 Apr 2006
Article Copyright 2006 by Adam Tibi
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid