-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathxml_sign.go
88 lines (76 loc) · 2.23 KB
/
xml_sign.go
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
package ncanode
// Policy is an alias of tsp signing policy.
type Policy string
// List of values Policy can take.
const (
TSAGostPolicy Policy = "TSA_GOST_POLICY"
TSAGostGtPolicy Policy = "TSA_GOSTGT_POLICY"
)
// HashAlgorithm is an alias of tsp hash algorithm.
type HashAlgorithm string
// List of values HashAlgorithm can take.
const (
MD5 HashAlgorithm = "MD5"
SHA1 HashAlgorithm = "SHA1"
SHA224 HashAlgorithm = "SHA224"
SHA256 HashAlgorithm = "SHA256"
SHA384 HashAlgorithm = "SHA384"
SHA512 HashAlgorithm = "SHA512"
RIPEMD128 HashAlgorithm = "RIPEMD128"
RIPEMD160 HashAlgorithm = "RIPEMD160"
RIPEMD256 HashAlgorithm = "RIPEMD256"
GOST34311GT HashAlgorithm = "GOST34311GT"
GOST34311 HashAlgorithm = "GOST34311"
)
// TSPConfig specifies TSP signing options.
// Used if Enabled is set to true.
type TSPConfig struct {
Enabled bool
Policy Policy
HashAlgorithm HashAlgorithm
InCMS bool
}
type xmlSignRequest struct {
P12 string `json:"p12"`
Password string `json:"password"`
XML string `json:"xml"`
CreateTsp bool `json:"createTsp,omitempty"`
UseTsaPolicy Policy `json:"useTsaPolicy,omitempty"`
TSPHashAlgorithm HashAlgorithm `json:"tspHashAlgorithm,omitempty"`
}
// XMLSignResponse describes json response from XMLSign.
type XMLSignResponse struct {
apiResponse
Result struct {
XML string `json:"xml"`
TSP string `json:"tsp"`
} `json:"result"`
}
// XMLSign signs xml.
//
// See https://ncanode.kz/docs.php?go=7025fdf95d235db4bc6985efd3d1574214107cfd
func (c *Client) XMLSign(p12, password, xml string, config *TSPConfig) (*XMLSignResponse, error) {
if p12 == "" || password == "" || xml == "" {
return nil, ErrInvalidRequestBody
}
if config == nil {
config = &TSPConfig{}
}
body := apiRequest{
Version: c.version,
Method: "XML.sign",
Params: xmlSignRequest{
P12: p12,
Password: password,
XML: xml,
CreateTsp: config.Enabled,
UseTsaPolicy: config.Policy,
TSPHashAlgorithm: config.HashAlgorithm,
},
}
var reply XMLSignResponse
if err := c.call(body, &reply); err != nil {
return nil, err
}
return &reply, nil
}