Sjur:
the CuteEditor use
System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile("CuteEditor","SHA1")
to encrypt the settings.
If you want to use fixed encrypt-key , you can set the machineKey at web.config :
<system.web>
<machineKey
validationKey="21F090935F6E49C2C797F69BBAAD8402ABD2EE0B667A8B44EA7DD4374267A75D7AD972A119482D15A4127461DB1DC347C1A63AE5F1CCFAACFF1B72A7F0A281B"
decryptionKey="ABAA84D7EC4BB56D75D217CECFFB9628809BDB8BF91CFCD64568A145BE59719F"
validation="SHA1"
decryption="AES"
/>
</system.web>
You must generate your secure key , you can find the code from this article
Regards , Terry .