-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathAssert.php
More file actions
37 lines (33 loc) · 1.89 KB
/
Assert.php
File metadata and controls
37 lines (33 loc) · 1.89 KB
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
30
31
32
33
34
35
36
37
<?php
declare(strict_types=1);
namespace SimpleSAML\XMLSecurity\Assert;
use SimpleSAML\XML\Assert\Assert as BaseAssert;
/**
* SimpleSAML\XMLSecurity\Assert\Assert wrapper class
*
* @package simplesamlphp/xml-security
*
* @method static void validCryptoBinary(mixed $value, string $message = '', string $exception = '')
* @method static void validDigestValue(mixed $value, string $message = '', string $exception = '')
* @method static void validECPoint(mixed $value, string $message = '', string $exception = '')
* @method static void validHMACOutputLength(mixed $value, string $message = '', string $exception = '')
* @method static void validKeySize(mixed $value, string $message = '', string $exception = '')
* @method static void nullOrValidCryptoBinary(mixed $value, string $message = '', string $exception = '')
* @method static void nullOrValidDigestValue(mixed $value, string $message = '', string $exception = '')
* @method static void nullOrValidECPoint(mixed $value, string $message = '', string $exception = '')
* @method static void nullOrValidHMACOutputLength(mixed $value, string $message = '', string $exception = '')
* @method static void nullOrValidKeySize(mixed $value, string $message = '', string $exception = '')
* @method static void allValidCryptoBinary(mixed $value, string $message = '', string $exception = '')
* @method static void allValidDigestValue(mixed $value, string $message = '', string $exception = '')
* @method static void allValidECPoint(mixed $value, string $message = '', string $exception = '')
* @method static void allValidHMACOutputLength(mixed $value, string $message = '', string $exception = '')
* @method static void allValidKeyValue(mixed $value, string $message = '', string $exception = '')
*/
class Assert extends BaseAssert
{
use CryptoBinaryTrait;
use DigestValueTrait;
use ECPointTrait;
use HMACOutputLengthTrait;
use KeySizeTrait;
}