rain
2024-06-13 cbb68695817f3008c9d965487322c21ec822a42d
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
122
123
124
125
126
127
128
package com.dji.sample.territory.utils.jym;
 
public class SM2SignVO {
    public String sm2_userd;
    public String x_coord;
    public String y_coord;
    public String sm3_z;
    public String sign_express;
    public String sm3_digest;
    public String sign_r;
    public String sign_s;
    public String verify_r;
    public String verify_s;
    public String sm2_sign;
    public String sm2_type;
    public boolean isVerify;
 
    public SM2SignVO() {
    }
 
    public String getX_coord() {
        return this.x_coord;
    }
 
    public void setX_coord(String x_coord) {
        this.x_coord = x_coord;
    }
 
    public String getY_coord() {
        return this.y_coord;
    }
 
    public void setY_coord(String y_coord) {
        this.y_coord = y_coord;
    }
 
    public String getSm3_z() {
        return this.sm3_z;
    }
 
    public void setSm3_z(String sm3_z) {
        this.sm3_z = sm3_z;
    }
 
    public String getSm3_digest() {
        return this.sm3_digest;
    }
 
    public void setSm3_digest(String sm3_digest) {
        this.sm3_digest = sm3_digest;
    }
 
    public String getSm2_signForSoft() {
        return this.sm2_sign;
    }
 
    public String getSm2_signForHard() {
        return this.getSign_r() + this.getSign_s();
    }
 
    public void setSm2_sign(String sm2_sign) {
        this.sm2_sign = sm2_sign;
    }
 
    public String getSign_express() {
        return this.sign_express;
    }
 
    public void setSign_express(String sign_express) {
        this.sign_express = sign_express;
    }
 
    public String getSm2_userd() {
        return this.sm2_userd;
    }
 
    public void setSm2_userd(String sm2_userd) {
        this.sm2_userd = sm2_userd;
    }
 
    public String getSm2_type() {
        return this.sm2_type;
    }
 
    public void setSm2_type(String sm2_type) {
        this.sm2_type = sm2_type;
    }
 
    public boolean isVerify() {
        return this.isVerify;
    }
 
    public void setVerify(boolean isVerify) {
        this.isVerify = isVerify;
    }
 
    public String getSign_r() {
        return this.sign_r;
    }
 
    public void setSign_r(String sign_r) {
        this.sign_r = sign_r;
    }
 
    public String getSign_s() {
        return this.sign_s;
    }
 
    public void setSign_s(String sign_s) {
        this.sign_s = sign_s;
    }
 
    public String getVerify_r() {
        return this.verify_r;
    }
 
    public void setVerify_r(String verify_r) {
        this.verify_r = verify_r;
    }
 
    public String getVerify_s() {
        return this.verify_s;
    }
 
    public void setVerify_s(String verify_s) {
        this.verify_s = verify_s;
    }
}