诚城的成长 诚城的成长
首页
  • 高数基础
  • 数一

    • 高等数学
    • 线性代数
    • 概率论与数理统计
  • 820

    • 数据结构
    • 计算机操作系统
  • 英一

    • 单词
    • 语法
    • 阅读理解
    • 作文
  • 政治

    • 马克思主义基本原理
    • 毛泽东
    • 近代史
    • 思修
    • 时事
  • openpose
  • html5
  • css3
  • UI

    • Tailwind Css
    • Element-Plus
    • UniApp
  • 框架

    • Vue3
  • 拓展包

    • 包管理工具
    • 包开发
  • 开发语言

    • C语言
    • PHP
    • Phyton
  • 框架

    • Laravel
  • 会计

    • 初级经济法基础
    • 初级会计实务
  • 软考

    • 信息系统项目管理师
  • 博客

    • vitepress
    • vuepress
  • manim
  • git
  • vsCode
  • latex
  • docker
  • axios
  • vim
  • mac
  • Jetbrains

    • phpstorm
    • clion
突发奇想
GitHub (opens new window)

诚城

我有N个梦想……
首页
  • 高数基础
  • 数一

    • 高等数学
    • 线性代数
    • 概率论与数理统计
  • 820

    • 数据结构
    • 计算机操作系统
  • 英一

    • 单词
    • 语法
    • 阅读理解
    • 作文
  • 政治

    • 马克思主义基本原理
    • 毛泽东
    • 近代史
    • 思修
    • 时事
  • openpose
  • html5
  • css3
  • UI

    • Tailwind Css
    • Element-Plus
    • UniApp
  • 框架

    • Vue3
  • 拓展包

    • 包管理工具
    • 包开发
  • 开发语言

    • C语言
    • PHP
    • Phyton
  • 框架

    • Laravel
  • 会计

    • 初级经济法基础
    • 初级会计实务
  • 软考

    • 信息系统项目管理师
  • 博客

    • vitepress
    • vuepress
  • manim
  • git
  • vsCode
  • latex
  • docker
  • axios
  • vim
  • mac
  • Jetbrains

    • phpstorm
    • clion
突发奇想
GitHub (opens new window)
  • 入门指南
  • passport

  • 表单验证

  • 模型与迁移

  • 中间件
  • event and listen
  • trait
    • UuidTrait
    • AppCryptTrait
  • artisan 命令
  • laravel9
诚城
2022-06-21
目录

trait原创

# UuidTrait

查看

# AppCryptTrait

点击查看
<?php

namespace App\Traits;

trait AppCryptTrait
{
    public function encrypt($plaintext,string $cinpher='',string $key='',int $options=0,string $iv='',string $tag=''){
        $cinpher = empty($cinpher)?config('custom.aes.openssl.method'):$cinpher;
        $key = empty($key)?config('custom.aes.openssl.key'):$key;
        $iv = empty($iv)?config('custom.aes.openssl.iv'):$iv;
        $data = openssl_encrypt($plaintext, $cinpher, $key, $options, $iv, $tag);
        return base64_encode($data);
    }
    public function decrypt(string $data,string $cipher_algo='',string $key='',int $options=0,string $iv='',string $tag=''){
        $cipher_algo = empty($cipher_algo)?config('custom.aes.openssl.method'):$cipher_algo;
        $passphrase = empty($passphrase)?config('custom.aes.openssl.key'):$passphrase;
        $options = empty($options)?config('custom.aes.openssl.key'):$options;
        $iv = empty($iv)?config('custom.aes.openssl.iv'):$iv;
        $res = openssl_decrypt(base64_decode($data),$cipher_algo,$passphrase,$options,$iv,$tag);
        return json_decode($res,true);// json_decode 将字符串转为PHP变量,true 返回 array 而非 object
    }
}

通过use在其他地方引入,使用$this->encrypt $this->decrypt调用。

上次更新: 2022/08/23, 18:12:45
event and listen
artisan 命令

← event and listen artisan 命令→

Theme by Vdoing | Copyright © 2022-2022 carveybunt | MIT License
  • 跟随系统
  • 浅色模式
  • 深色模式
  • 阅读模式
×
×

特别申明:

本站所有内容均为个人理解或转载,如有不当之处,敬请大佬指导!