我有一個很酷的方法來生成一個6位數的散列用於電話驗證。什麼變量在特定的固定時間間隔內保持真實?
該代碼永遠不會被存儲,而是通過操縱該特定手機加上一些其他變量(包括導致在小時結束時發佈的代碼在用戶有機會使用它們之前到期的發佈時間)來計算的。
我怎麼能拿到一定的時間間隔內保持不變,包括它使代碼後自動失效時間變量?
public string getTimeVariable(long minutes)
{
var now=DateTime.Now;
//Some imprementation I cant think of....
}
public bool verifyVariable(string variable)
{
//Some other implementation to return true if specified minutes haven't elapsed since variable was issued
}
您需要一些在一段時間後過期的cookie嗎?你的問題很不明確。你不能在任何地方存儲代碼,你只需將它編譯成一個程序集。 – HimBromBeere
沒有cookie只是一個變量 – konzo
也許你應該展示一些代碼來說明你想實現什麼。 – HimBromBeere