/**
  * Decode value using the seed that is by default the project's key
  * @param $value the value to decode
  * @param $method the decoding method
  * @param $seed the seed for the decoding
  * @return the decoded value
  */
 public static function decode($value, $method = false, $seed = SECURITY_KEY)
 {
     return Cryptography::cryptographyBuiler($method, $seed)->decodeBuilder($value);
 }