-
Notifications
You must be signed in to change notification settings - Fork 5
/
hybrid_public_key.go
148 lines (118 loc) · 3.35 KB
/
hybrid_public_key.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
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
package foundation
// #include <virgil/crypto/foundation/vscf_foundation_public.h>
import "C"
import "runtime"
import unsafe "unsafe"
/*
* Handles a hybrid public key.
*
* The hybrid public key contains 2 public keys.
*/
type HybridPublicKey struct {
cCtx *C.vscf_hybrid_public_key_t /*ct10*/
}
/*
* Return the first public key.
*/
func (obj *HybridPublicKey) FirstKey() (PublicKey, error) {
proxyResult := /*pr4*/C.vscf_hybrid_public_key_first_key(obj.cCtx)
runtime.KeepAlive(obj)
return FoundationImplementationWrapPublicKey(proxyResult) /* r4 */
}
/*
* Return the second public key.
*/
func (obj *HybridPublicKey) SecondKey() (PublicKey, error) {
proxyResult := /*pr4*/C.vscf_hybrid_public_key_second_key(obj.cCtx)
runtime.KeepAlive(obj)
return FoundationImplementationWrapPublicKey(proxyResult) /* r4 */
}
/* Handle underlying C context. */
func (obj *HybridPublicKey) Ctx() uintptr {
return uintptr(unsafe.Pointer(obj.cCtx))
}
func NewHybridPublicKey() *HybridPublicKey {
ctx := C.vscf_hybrid_public_key_new()
obj := &HybridPublicKey {
cCtx: ctx,
}
runtime.SetFinalizer(obj, (*HybridPublicKey).Delete)
return obj
}
/* Acquire C context.
* Note. This method is used in generated code only, and SHOULD NOT be used in another way.
*/
func newHybridPublicKeyWithCtx(ctx *C.vscf_hybrid_public_key_t /*ct10*/) *HybridPublicKey {
obj := &HybridPublicKey {
cCtx: ctx,
}
runtime.SetFinalizer(obj, (*HybridPublicKey).Delete)
return obj
}
/* Acquire retained C context.
* Note. This method is used in generated code only, and SHOULD NOT be used in another way.
*/
func newHybridPublicKeyCopy(ctx *C.vscf_hybrid_public_key_t /*ct10*/) *HybridPublicKey {
obj := &HybridPublicKey {
cCtx: C.vscf_hybrid_public_key_shallow_copy(ctx),
}
runtime.SetFinalizer(obj, (*HybridPublicKey).Delete)
return obj
}
/*
* Release underlying C context.
*/
func (obj *HybridPublicKey) Delete() {
if obj == nil {
return
}
runtime.SetFinalizer(obj, nil)
obj.delete()
}
/*
* Release underlying C context.
*/
func (obj *HybridPublicKey) delete() {
C.vscf_hybrid_public_key_delete(obj.cCtx)
}
/*
* Algorithm identifier the key belongs to.
*/
func (obj *HybridPublicKey) AlgId() AlgId {
proxyResult := /*pr4*/C.vscf_hybrid_public_key_alg_id(obj.cCtx)
runtime.KeepAlive(obj)
return AlgId(proxyResult) /* r8 */
}
/*
* Return algorithm information that can be used for serialization.
*/
func (obj *HybridPublicKey) AlgInfo() (AlgInfo, error) {
proxyResult := /*pr4*/C.vscf_hybrid_public_key_alg_info(obj.cCtx)
runtime.KeepAlive(obj)
return FoundationImplementationWrapAlgInfo(proxyResult) /* r4 */
}
/*
* Length of the key in bytes.
*/
func (obj *HybridPublicKey) Len() uint {
proxyResult := /*pr4*/C.vscf_hybrid_public_key_len(obj.cCtx)
runtime.KeepAlive(obj)
return uint(proxyResult) /* r9 */
}
/*
* Length of the key in bits.
*/
func (obj *HybridPublicKey) Bitlen() uint {
proxyResult := /*pr4*/C.vscf_hybrid_public_key_bitlen(obj.cCtx)
runtime.KeepAlive(obj)
return uint(proxyResult) /* r9 */
}
/*
* Check that key is valid.
* Note, this operation can be slow.
*/
func (obj *HybridPublicKey) IsValid() bool {
proxyResult := /*pr4*/C.vscf_hybrid_public_key_is_valid(obj.cCtx)
runtime.KeepAlive(obj)
return bool(proxyResult) /* r9 */
}