| Current Path : /home/rtorresani/www/vendor/laminas/laminas-crypt/src/Symmetric/Padding/ |
| Current File : //home/rtorresani/www/vendor/laminas/laminas-crypt/src/Symmetric/Padding/PaddingInterface.php |
<?php
namespace Laminas\Crypt\Symmetric\Padding;
interface PaddingInterface
{
/**
* Pad the string to the specified size
*
* @param string $string The string to pad
* @param int $blockSize The size to pad to
* @return string The padded string
*/
public function pad($string, $blockSize = 32);
/**
* Strip the padding from the supplied string
*
* @param string $string The string to trim
* @return string The unpadded string
*/
public function strip($string);
}