Wednesday, July 3, 2024
HomeLanguagesPhpPHP | openssl_cipher_iv_length() Function

PHP | openssl_cipher_iv_length() Function

The openssl_cipher_iv_length() function is an inbuilt function in PHP which is used to get the cipher initialization vector (iv) length. An initialization vector (iv) is an arbitrary number that is used along with a secret key for data encryption. Each cipher method has an initialization vector length associated with it.

Syntax:

int openssl_cipher_iv_length( string $method )

Parameters: This function accepts a single parameter $method which holds the cipher method.

Return Value: This function returns cipher length on success or FALSE on failure.

Exceptions: This function throws E_WARNING level error when the cipher algorithm is unknown.

Below examples illustrate the openssl_cipher_iv_length() function in PHP:

Example 1: In this program we will get iv length of aes-128-gcm cipher algorithm




<?php
  
// The cipher method to get iv length of
$method = 'aes-128-gcm';
  
// Get the iv length
$ivl = openssl_cipher_iv_length($method);
  
// Output the ivl to
echo $ivl;
?>


Output:

12

Example 2: In this program, we will get iv length of camellia-192-cfb8 cipher algorithm




<?php
  
// The cipher method to get iv length of
$method = 'camellia-192-cfb8';
  
// Get the iv length
$ivl = openssl_cipher_iv_length($method);
  
// Output the ivl to
echo $ivl;
?>


Output:

16

Reference: https://www.php.net/manual/en/function.openssl-cipher-iv-length.php

Nicole Veronica Rubhabha
Nicole Veronica Rubhabha
A highly competent and organized individual DotNet developer with a track record of architecting and developing web client-server applications. Recognized as a personable, dedicated performer who demonstrates innovation, communication, and teamwork to ensure quality and timely project completion. Expertise in C#, ASP.Net, MVC, LINQ, EF 6, Web Services, SQL Server, MySql, Web development,
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments