Ask a Question related to ASP.NET General, Design and Development.
-
Tommy #1
Question on the FormsAuthentication.Encrypt method
I want to encrypt the values of my cookies. I found out that I could
create a FormsAuthenticationTicket, and use the
FormsAuthentication.Encrypt method to encrypt the cookie.
However, I do not want to use FormsAuthentication feature. I already
have custom code to redirect the use back to the login page if they
haven't signed on.
My question is can I use the FormsAuthentication.Encrypt method to
encrypt my cookies without using the FormsAuthentication feature of
ASP.NET?
Tommy,
Tommy Guest
-
FormsAuthentication Encrypt/Decrypt Problem/Issue
I'm using the C# sample from MSDN on how to authenticate against an active directory. What I notice is that I get the list of groups placed in the... -
FormsAuthentication.Encrypt - algorithm
Hajo, I have a few questions about above method. 1. AFAIK it is symatric encryption, what kind of algorithm(name) is used in this method? 2.... -
Forms Auth and FormsAuthentication.SignOut()Question
I'm using Form Auth. I 'm using the FormsAuthentication.SignOut() to sign out But when the user logins in and later logs out using... -
FormsAuthentication Class Question
First, here's a quick description of what I have so far. I have a website that I am building that contains both asp and asp.net pages. I have... -
FormsAuthentication.Encrypt problem
Hi, I have a strange problem. I get NULL reference out of Encrypt function. FormsAuthenticationTicket ticket = new... -
S. Justin Gengo #2
Re: Question on the FormsAuthentication.Encrypt method
Tommy,
I think that you could but why not encrypt the cookies with a normal
encryption object? Then you won't have to tie in to all the forms
authentication objects which you may have to code around. Just encrypt the
data you're putting into the cookies and you're all set.
There are many good articles about how to use the encyrption object in .Net,
but if you want a quick and easy to use set of encryption methods I've
developed some. I'm offering all the object's I've built and their source
code on my web site, [url]www.aboutfortunate.com[/url], for free.
Just go to the code library and click the "Encryption" button in the left
menu.
Sincerely,
--
S. Justin Gengo, MCP
Web Developer
Free code library at:
[url]www.aboutfortunate.com[/url]
"Out of chaos comes order."
Nietzche
"Tommy" <Tommy@WebSoftwares.net> wrote in message
news:aa725729.0308070839.6a083315@posting.google.c om...> I want to encrypt the values of my cookies. I found out that I could
> create a FormsAuthenticationTicket, and use the
> FormsAuthentication.Encrypt method to encrypt the cookie.
>
> However, I do not want to use FormsAuthentication feature. I already
> have custom code to redirect the use back to the login page if they
> haven't signed on.
>
> My question is can I use the FormsAuthentication.Encrypt method to
> encrypt my cookies without using the FormsAuthentication feature of
> ASP.NET?
>
> Tommy,
S. Justin Gengo Guest



Reply With Quote

