Here is my scenario:
I have a gen.asp file when someone requests this file. He needs to generate an encrypted random key and pass it back. (Gen.asp cannot save the key that it generated, nowhere without a session, without a database)
I have another GenValid.asp file, in this file I need to check the weather, the encrypted random key is generated by Gen.asp or not. (verification can be, if the encrypted random key can be decrypted, then it is a valid key, if it is not a valid key)
How can i do this? in classic ASP.
source
share