blob: 6bf5e7e7dbc00581ee4cc391624257ed8293db9c (
plain)
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace NCU\Security\Signature;
use NCU\Security\Signature\Enum\DigestAlgorithm;
use NCU\Security\Signature\Exceptions\SignatoryNotFoundException;
use NCU\Security\Signature\Exceptions\SignatureElementNotFoundException;
use NCU\Security\Signature\Model\Signatory;
/**
* model that store data related to a possible signature.
* those details will be used:
* - to confirm authenticity of a signed incoming request
* - to sign an outgoing request
*
* This interface must not be implemented in your application:
* @see IIncomingSignedRequest
* @see IOutgoingSignedRequest
*
* @experimental 31.0.0
*/
interface ISignedRequest {
/**
* payload of the request
*
* @return string
* @experimental 31.0.0
*/
public function getBody(): string;
/**
* get algorithm used to generate digest
*
* @return DigestAlgorithm
* @experimental 31.0.0
*/
public function getDigestAlgorithm(): DigestAlgorithm;
/**
* checksum of the payload of the request
*
* @return string
* @experimental 31.0.0
*/
public function getDigest(): string;
/**
* set the list of headers related to the signature of the request
*
* @param array $elements
*
* @return self
* @experimental 31.0.0
*/
public function setSigningElements(array $elements): self;
/**
* get the list of elements in the Signature header of the request
*
* @return array
* @experimental 31.0.0
*/
public function getSigningElements(): array;
/**
* @param string $key
*
* @return string
* @throws SignatureElementNotFoundException
* @experimental 31.0.0
*/
public function getSigningElement(string $key): string;
/**
* returns data used to generate signature
*
* @return array
* @experimental 31.0.0
*/
public function getSignatureData(): array;
/**
* get the signed version of the signature
*
* @return string
* @experimental 31.0.0
*/
public function getSignature(): string;
/**
* set the signatory, containing keys and details, related to this request
*
* @param Signatory $signatory
* @return self
* @experimental 31.0.0
*/
public function setSignatory(Signatory $signatory): self;
/**
* get the signatory, containing keys and details, related to this request
*
* @return Signatory
* @throws SignatoryNotFoundException
* @experimental 31.0.0
*/
public function getSignatory(): Signatory;
/**
* returns if a signatory related to this request have been found and defined
*
* @return bool
* @experimental 31.0.0
*/
public function hasSignatory(): bool;
}
|