"라라벨 EncryptedStore"의 두 판 사이의 차이

(새 문서: ==개요== ;라라벨 EncryptedStore <source lang='php'> <?php namespace Illuminate\Session; use SessionHandlerInterface; use Illuminate\Contracts\Encryption\DecryptException; use...)
 
44번째 줄: 44번째 줄:
==같이 보기==
==같이 보기==
* [[라라벨 SessionManager]]
* [[라라벨 SessionManager]]
* [[라라벨 Store]]


[[분류: Illuminate\Session]]
[[분류: Illuminate\Session]]

2016년 9월 9일 (금) 21:05 판

1 개요

라라벨 EncryptedStore
<?php

namespace Illuminate\Session;

use SessionHandlerInterface;
use Illuminate\Contracts\Encryption\DecryptException;
use Illuminate\Contracts\Encryption\Encrypter as EncrypterContract;

class EncryptedStore extends Store
{
    protected $encrypter;

    public function __construct($name, SessionHandlerInterface $handler, EncrypterContract $encrypter, $id = null)
    {
        $this->encrypter = $encrypter;
        parent::__construct($name, $handler, $id);
    }

    protected function prepareForUnserialize($data)
    {
        try {
            return $this->encrypter->decrypt($data);
        } catch (DecryptException $e) {
            return json_encode([]);
        }
    }

    protected function prepareForStorage($data)
    {
        return $this->encrypter->encrypt($data);
    }

    public function getEncrypter()
    {
        return $this->encrypter;
    }
}

2 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}