Let us say that I have deployed an ASP.NET website as SSL only. Does this mean that I don't have to worry about encrypting the cookies explicitly using the methods outlined in the following links in order to protect them?
How do I protect my site's session cookie?
How to secure the ASP.NET_SessionId cookie?
Or should I add this code in my web.config file?
<system.web>
<httpCookies httpOnlyCookies="true" requireSSL="true" />
<system.web>
Note
I am not expliciltly creating cookies in my code. They are being generated as a result of creating Sessions.