simplesamlphp /
xml-security
| 1 | <?php |
||
| 2 | |||
| 3 | declare(strict_types=1); |
||
| 4 | |||
| 5 | namespace SimpleSAML\XMLSecurity\XML\xenc11; |
||
| 6 | |||
| 7 | /** |
||
| 8 | * A class implementing the xenc11:PBKDF2-params element. |
||
| 9 | * |
||
| 10 | * @package simplesamlphp/xml-security |
||
| 11 | */ |
||
| 12 | final class PBKDF2params extends AbstractPBKDF2ParameterType |
||
| 13 | { |
||
| 14 | public const string LOCALNAME = 'PBKDF2-params'; |
||
|
0 ignored issues
–
show
Bug
introduced
by
Loading history...
|
|||
| 15 | } |
||
| 16 |