Lines Matching refs:padding
63 int EVP_CIPHER_CTX_set_padding(EVP_CIPHER_CTX *x, int padding);
121 If padding is enabled (the default) then EVP_EncryptFinal_ex() encrypts
123 It uses L<standard block padding|/NOTES> (aka PKCS padding). The encrypted
129 If padding is disabled then EVP_EncryptFinal_ex() will not encrypt any more
135 error code if padding is enabled and the final block is not correctly
137 operations except that if padding is enabled the decrypted data buffer B<out>
172 EVP_CIPHER_CTX_set_padding() enables or disables padding. By default
173 encryption operations are padded using standard block padding and the
174 padding is checked and removed when decrypting. If the B<pad> parameter
175 is zero then no padding is performed, the total amount of data encrypted
349 PKCS padding works by adding B<n> padding bytes of value B<n> to make the total
353 encrypted then 5 padding bytes of value 5 will be added.
357 Although the decryption operation can produce an error if padding is enabled,
362 If padding is disabled then the decryption operation will always succeed if