Class NoPadding

Summary

Fully Qualified Name: Zend\Crypt\Symmetric\Padding\NoPadding
Implements: PaddingInterface

Description

No Padding

Methods

Name Description Defined By
pad() Pad a string, do nothing and return the string NoPadding
strip() Unpad a string, do nothing and return the string NoPadding

Method Details

pad()

Pad a string, do nothing and return the string

Parameter Name Type Description
$string string
$blockSize int

Returns: string

strip()

Unpad a string, do nothing and return the string

Parameter Name Type Description
$string string

Returns: string

Top