<?php
if (class_exists('ParagonIE_Sodium_Core_AES_KeySchedule', false)) {
return;
}
class ParagonIE_Sodium_Core_AES_KeySchedule
{
protected $skey;
protected $expanded = false;
private $numRounds;
public function __construct(array $skey, $numRounds = 10)
{
$this->skey = $skey;
$this->numRounds = $numRounds;
}
public function get($i)
{
return $this->skey[$i];
}
public function getNumRounds()