HttpResponse.set_signed_cookie(key, value, salt='', max_age=None, expires=None, path='/', domain=None, secure=None, httponly=True)
Like set_cookie()
, but cryptographic signing the cookie before setting it. Use in conjunction with HttpRequest.get_signed_cookie()
. You can use the optional salt
argument for added key strength, but you will need to remember to pass it to the corresponding HttpRequest.get_signed_cookie()
call.
Please login to continue.