-
Notifications
You must be signed in to change notification settings - Fork 52
/
sig_data.go
64 lines (60 loc) · 1.95 KB
/
sig_data.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
/*
* Copyright (C) 2021 The poly network Authors
* This file is part of The poly network library.
*
* The poly network is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* The poly network is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with the poly network. If not, see <http://www.gnu.org/licenses/>.
*/
package handlers
import (
"encoding/hex"
"encoding/json"
clisvrcom "github.com/polynetwork/poly/cmd/sigsvr/common"
cliutil "github.com/polynetwork/poly/cmd/utils"
"github.com/polynetwork/poly/common/log"
)
type SigDataReq struct {
RawData string `json:"raw_data"`
}
type SigDataRsp struct {
SignedData string `json:"signed_data"`
}
func SigData(req *clisvrcom.CliRpcRequest, resp *clisvrcom.CliRpcResponse) {
rawReq := &SigDataReq{}
err := json.Unmarshal(req.Params, rawReq)
if err != nil {
resp.ErrorCode = clisvrcom.CLIERR_INVALID_PARAMS
return
}
rawData, err := hex.DecodeString(rawReq.RawData)
if err != nil {
log.Infof("Cli Qid:%s SigData hex.DecodeString error:%s", req.Qid, err)
resp.ErrorCode = clisvrcom.CLIERR_INVALID_PARAMS
return
}
signer, err := req.GetAccount()
if err != nil {
log.Infof("Cli Qid:%s SigData GetAccount:%s", req.Qid, err)
resp.ErrorCode = clisvrcom.CLIERR_ACCOUNT_UNLOCK
return
}
sigData, err := cliutil.Sign(rawData, signer)
if err != nil {
log.Infof("Cli Qid:%s SigData Sign error:%s", req.Qid, err)
resp.ErrorCode = clisvrcom.CLIERR_INTERNAL_ERR
return
}
resp.Result = &SigDataRsp{
SignedData: hex.EncodeToString(sigData),
}
}