class

Marten::HTTP::Cookies::SubStore::Encrypted

Inherits Marten::HTTP::Cookies::SubStore::Base / Reference / Object

Encrypted sub cookie store.

Instance methods

fetch(name : String | Symbol, &)

Returns the value matching the passed encrypted cookie name, or calls a block with the name when not found.

Source
fetch(name : String | Symbol, default = nil)

Returns the value matchine the passed encrypted cookie name, or the default one if it is not present.

Source
set(name : String | Symbol, value, **kwargs) : Nil

Allows to set a cookie that is encrypted.

The string representation of the passed value object will be encrypted, and the resulting string will be used as the cookie value. Appart from the cookie name and value, this method allows to define some additional cookie properties:

  • the cookie expiry datetime (expires argument)
  • the cookie path
  • the associated domain (useful in order to define cross-domain cookies)
  • whether or not the cookie should be sent for HTTPS requests only (secure argument)
  • whether or not client-side scripts should have access to the cookie (http_only argument)
  • the same_site policy (accepted values are "lax" or "strict")
Source