Key Management - Classic ASP - Encryption / Decryption

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.

0
source share
1 answer

GenValid.asp RSA1024 Private-Public. , GenValid.asp, gen.asp.

gen.asp , / GenValid.asp.

GenValid.asp, ( RSA1024) .

0

Source: https://habr.com/ru/post/1758812/


All Articles