PHP Classes

File: src/Asymmetric/SecretKey.php

Recommend this page to a friend!
  Classes of Scott Arciszewski   Halite   src/Asymmetric/SecretKey.php   Download  
File: src/Asymmetric/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!
Merge branch 'v2.0' of https://github.com/paragonie/halite into v2.0

Conflicts:
src/Symmetric/Crypto.php
Date: 8 years ago
Size: 799 bytes
 

Contents

Class file image Download
<?php
namespace ParagonIE\Halite\Asymmetric;

use \
ParagonIE\Halite\Contract;
use \
ParagonIE\Halite\Key;
use \
ParagonIE\Halite\Alerts\CannotPerformOperation;

class
SecretKey extends Key implements Contract\KeyInterface
{
   
/**
     * @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, true);
    }
   
   
/**
     * See the appropriate derived class.
     */
   
public function derivePublicKey()
    {
        throw new
CannotPerformOperation(
           
'This is not implemented in the base class'
       
);
    }
}