Im using System.Security.Cryptography.ProtectedData to Protect the license data before writing it to the registry.
ProtectData.Protect(Byte[], Byte[], DataProtectionScope.LocalMachine)
The Dataprotection scope is LocalMachine.
What are the parameters which are used by ProtectData to encrypt the string? If i copy the encrypted string to another machine,will it work?
Some users are reporting licensing problems,is ProtectedData consistent?