Open In App
Related Articles

PHP | openssl_cipher_iv_length() Function

Improve Article
Improve
Save Article
Save
Like Article
Like

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

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 17 Mar, 2020
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials