forked from nemiah/phpFinTS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSignaturalgorithmusV2.php
More file actions
29 lines (26 loc) · 874 Bytes
/
SignaturalgorithmusV2.php
File metadata and controls
29 lines (26 loc) · 874 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php
/** @noinspection PhpUnused */
namespace Fhp\Segment\HNSHK;
use Fhp\Segment\BaseDeg;
/**
* Data Element Group: Signaturalgorithmus (Version 2)
*
* @link https://www.hbci-zka.de/dokumente/spezifikation_deutsch/fintsv3/FinTS_3.0_Security_Sicherheitsverfahren_HBCI_Rel_20181129_final_version.pdf
* Section: D (letter S)
*/
class SignaturalgorithmusV2 extends BaseDeg
{
/**
* 6: Owner Signing (OSG)
*/
public int $verwendungDesSignaturalgorithmus = 6; // The only allowed value.
/**
* 1: nicht zugelassen
* 10: RSA-Algorithmus (bei RAH)
*/
public int $signaturalgorithmus = 10; // The only allowed value (not actually used, just as a dummy for PIN/TAN).
/**
* 19: RSASSA-PSS (bei RAH, RDH)
*/
public int $operationsmodus = 19; // The only allowed value (not actually used, just as a dummy for PIN/TAN).
}