ali-eltaweel/vault 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

ali-eltaweel/vault

最新稳定版本:1.0.0

Composer 安装命令:

composer require ali-eltaweel/vault

包简介

Secrets Repository

README 文档

README

Secrets Repository

Installation

Install vault via Composer:

composer require ali-eltaweel/vault

Usage

Creating Initialization Vectors (IVs)

use Vault\IV\IV;

$iv = IV::forMethod('aes-128-gcm');

Saving and Loading Initialization Vectors

$ivFile = new IVFile('path/to/iv/file');

$ivFile->data = $iv;
$ivFile = new IVFile('path/to/iv/file');

$iv = $ivFile->data;

Encrypt IV Files

$encryptionCodec = ...;

$ivFile = new IVFile('path/to/iv/file', $encryptionCodec);

Opening Vaults

use Vault\IV\IVFile;
use Vault\Vault\Vault;

$ivFile = new IVFile('path/to/iv/file');

$vault = new Vault(

  iv:         $ivFile->data,
  passphrase: 'password',
  filename:   'path/to/vault/file
);

Retrieving (Setting) Value from (to) Vaults

$value->set('key', 'value'); // value can be of any type, the only requirement is that it must be serializable.

$value = $vault->get('key');

统计信息

  • 总下载量: 7
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: Unknown
  • 更新时间: 2025-06-29