Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I find myself wanting to get the ASP.NET machine key for the current application. This is, of course, easy if a machine key is specified in the configuration file, but if it's set to auto generate then there doesn't seem to be a public method anywhere to get it.

Basically I want at it so I can write an encrypted/MACed cookie for myself, just like the ASP.NET Forms Authentication provider does.

Does anyone have any pointers or ideas?

share|improve this question

3 Answers

If you're using .NET 4, there's the MachineKey class. It doesn't give you raw access to the actual key, but it does provide methods for Encoding and Decoding the data using the same algorithms as the FormsAuthentication class, along with options for adding validation w/ an HMAC.

share|improve this answer

If the ASP.NET Forms Authentication provider can access it then have you tried looking at the provider source code? (I think this is the correct location, ScottGu's original blog post on the subject has had broken links since they updated MSDN)

share|improve this answer
The Forms Auth provider can get at it because there are internal methods to allow it :) – blowdart Nov 18 '09 at 11:39
And I assume it's not possible to reproduce those methods because the source for those internal methods isn't available? – tjrobinson Nov 18 '09 at 12:06
1  
They're available, kind of, but the actual backing store for the auto generated MAC key isn't, so even if used reflector, cut and pasted the methods, the actual key itself seems inaccessible. Which makes me wonder if I missed something! – blowdart Nov 19 '09 at 10:21

Do you actually NEED the key? Or just to encrypt and decrypt the data?

System.Web.Security.FormsAuthentication (.NET 2.0) has public Encrypt/Decrypt methods. These use System.Web.Configuration.MachineKeySection EncryptOrDecryptData, ByteArrayToHexString and HexStringToByteArray to encrypt and decrypt the data.

EncryptOrDecryptData handles loading / configuring the key data from config files/AutoGenerate as required.

Encrypt And Decrypt should be available via the source code downloads or reflector and readily converted to your purpose.

share|improve this answer
Wow, that was a while back. And yes, I did need the machine key specifically. – blowdart Oct 23 '10 at 16:48
@blowdart: Did you ever find a way to access the key? I'm looking for the same thing. – StevieG Aug 26 '11 at 23:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.