PHP Classes

File: src/Symmetric/SecretKey.php

Recommend this page to a friend!
  Classes of Scott Arciszewski   Halite   src/Symmetric/SecretKey.php   Download  
File: src/Symmetric/SecretKey.php
Role: Class source
Content type: text/plain
Description: Class source
Class: Halite
Perform cryptography operations with libsodium
Author: By
Last change: For version 2, let's use strict types!
Date: 8 years ago
Size: 460 bytes
 

Contents

Class file image Download
<?php
declare(strict_types=1);
namespace
ParagonIE\Halite\Symmetric;

use \
ParagonIE\Halite\Key;

class
SecretKey extends Key
{
   
/**
     * @param string $keyMaterial - The actual key data
     * @param bool $signing - Is this a signing key?
     */
   
public function __construct(string $keyMaterial = '', ...$args)
    {
       
$signing = \count($args) >= 1 ? $args[0] : false;
       
parent::__construct($keyMaterial, false, $signing, false);
    }
}