라라벨 EncryptedStore

Jmnote (토론 | 기여)님의 2016년 9월 9일 (금) 21:05 판 (새 문서: ==개요== ;라라벨 EncryptedStore <source lang='php'> <?php namespace Illuminate\Session; use SessionHandlerInterface; use Illuminate\Contracts\Encryption\DecryptException; use...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

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 }}