PBES1PKCS12AlgorithmIdentifier   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 1
eloc 2
dl 0
loc 13
c 0
b 0
f 0
ccs 2
cts 2
cp 1
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
1
<?php
2
3
declare(strict_types = 1);
4
5
namespace Sop\PKCS5\ASN1\AlgorithmIdentifier;
6
7
/**
8
 * Base class for PBES1 encryption scheme with PKCS #12 semantics.
9
 */
10
abstract class PBES1PKCS12AlgorithmIdentifier extends PBES1AlgorithmIdentifier
11
{
12
    /**
13
     * Constructor.
14
     *
15
     * @param string $salt            Salt
16
     * @param int    $iteration_count Iteration count
17
     *
18
     * @throws \UnexpectedValueException
19
     */
20 4
    public function __construct(string $salt, int $iteration_count)
21
    {
22 4
        parent::__construct($salt, $iteration_count);
23 4
    }
24
}
25