-
Notifications
You must be signed in to change notification settings - Fork 5
/
keytype.go
200 lines (179 loc) · 6.04 KB
/
keytype.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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
/*
* Copyright (C) 2015-2020 Virgil Security Inc.
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* (1) Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* (2) Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
*
* (3) Neither the name of the copyright holder nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
* Lead Maintainer: Virgil Security Inc. <support@virgilsecurity.com>
*/
package crypto
import (
"github.com/VirgilSecurity/virgil-sdk-go/v6/crypto/wrapper/foundation"
)
type KeyType int
const (
DefaultKeyType KeyType = iota
Rsa2048
Rsa3072
Rsa4096
Rsa8192
P256r1
Curve25519
Ed25519
Curve25519Ed25519
Curve25519Round5Ed25519Falcon
Curve25519Round5
Curve25519Curve25519
)
type keyGen interface {
GeneratePrivateKey(kp *foundation.KeyProvider) (foundation.PrivateKey, error)
}
var keyTypeMap = map[KeyType]keyGen{
DefaultKeyType: keyType(foundation.AlgIdEd25519),
Rsa2048: rsaKeyType(2048),
Rsa3072: rsaKeyType(3072),
Rsa4096: rsaKeyType(4096),
Rsa8192: rsaKeyType(8192),
P256r1: keyType(foundation.AlgIdSecp256r1),
Curve25519: keyType(foundation.AlgIdCurve25519),
Ed25519: keyType(foundation.AlgIdEd25519),
Curve25519Ed25519: &compoundHybridKeyType{
cipherFirstKeyAlgId: foundation.AlgIdCurve25519,
cipherSecondKeyAlgId: foundation.AlgIdNone,
signerFirstKeyAlgId: foundation.AlgIdEd25519,
signerSecondKeyAlgId: foundation.AlgIdNone,
},
Curve25519Round5Ed25519Falcon: &compoundHybridKeyType{
cipherFirstKeyAlgId: foundation.AlgIdCurve25519,
cipherSecondKeyAlgId: foundation.AlgIdRound5Nd1cca5d,
signerFirstKeyAlgId: foundation.AlgIdEd25519,
signerSecondKeyAlgId: foundation.AlgIdFalcon,
},
Curve25519Round5: &hybridKeyType{
firstKeyAlgId: foundation.AlgIdCurve25519,
secondKeyAlgId: foundation.AlgIdRound5Nd1cca5d,
},
Curve25519Curve25519: &hybridKeyType{
firstKeyAlgId: foundation.AlgIdCurve25519,
secondKeyAlgId: foundation.AlgIdCurve25519,
},
}
type keyType foundation.AlgId
func (t keyType) GeneratePrivateKey(kp *foundation.KeyProvider) (foundation.PrivateKey, error) {
return kp.GeneratePrivateKey(foundation.AlgId(t))
}
type rsaKeyType int
func (t rsaKeyType) GeneratePrivateKey(kp *foundation.KeyProvider) (foundation.PrivateKey, error) {
kp.SetRsaParams(uint(t))
return kp.GeneratePrivateKey(foundation.AlgIdRsa)
}
type compoundHybridKeyType struct {
cipherFirstKeyAlgId foundation.AlgId
cipherSecondKeyAlgId foundation.AlgId
signerFirstKeyAlgId foundation.AlgId
signerSecondKeyAlgId foundation.AlgId
}
func (t *compoundHybridKeyType) GeneratePrivateKey(kp *foundation.KeyProvider) (foundation.PrivateKey, error) {
return kp.GenerateCompoundHybridPrivateKey(
t.cipherFirstKeyAlgId,
t.cipherSecondKeyAlgId,
t.signerFirstKeyAlgId,
t.signerSecondKeyAlgId,
)
}
type hybridKeyType struct {
firstKeyAlgId foundation.AlgId
secondKeyAlgId foundation.AlgId
}
func (t *hybridKeyType) GeneratePrivateKey(kp *foundation.KeyProvider) (foundation.PrivateKey, error) {
return kp.GenerateHybridPrivateKey(
t.firstKeyAlgId,
t.secondKeyAlgId,
)
}
func getKeyType(obj deleter) (KeyType, error) {
key, ok := obj.(foundation.Key)
if !ok {
return DefaultKeyType, ErrUnsupportedKeyType
}
algInfo, err := key.AlgInfo()
if err != nil {
return DefaultKeyType, err
}
info := foundation.NewKeyInfoWithAlgInfo(algInfo)
if info.IsCompound() {
if info.CompoundHybridCipherFirstKeyAlgId() == foundation.AlgIdCurve25519 &&
info.CompoundHybridCipherSecondKeyAlgId() == foundation.AlgIdRound5Nd1cca5d &&
info.CompoundHybridSignerFirstKeyAlgId() == foundation.AlgIdEd25519 &&
info.CompoundHybridSignerSecondKeyAlgId() == foundation.AlgIdFalcon {
return Curve25519Round5Ed25519Falcon, nil
} else if info.CompoundCipherAlgId() == foundation.AlgIdCurve25519 &&
info.CompoundSignerAlgId() == foundation.AlgIdEd25519 {
return Curve25519Ed25519, nil
} else {
return DefaultKeyType, ErrUnsupportedKeyType
}
}
if info.IsHybrid() {
if info.HybridFirstKeyAlgId() == foundation.AlgIdCurve25519 &&
info.HybridSecondKeyAlgId() == foundation.AlgIdRound5Nd1cca5d {
return Curve25519Round5, nil
}
if info.HybridFirstKeyAlgId() == foundation.AlgIdCurve25519 &&
info.HybridSecondKeyAlgId() == foundation.AlgIdCurve25519 {
return Curve25519Curve25519, nil
}
return DefaultKeyType, ErrUnsupportedKeyType
}
if algInfo.AlgId() == foundation.AlgIdRsa {
switch key.Bitlen() {
case 2048:
return Rsa2048, nil
case 3072:
return Rsa3072, nil
case 4096:
return Rsa4096, nil
case 8192:
return Rsa8192, nil
default:
return DefaultKeyType, ErrUnsupportedKeyType
}
}
switch algInfo.AlgId() {
case foundation.AlgIdCurve25519:
return Curve25519, nil
case foundation.AlgIdEd25519:
return Ed25519, nil
case foundation.AlgIdSecp256r1:
return P256r1, nil
default:
return DefaultKeyType, ErrUnsupportedKeyType
}
}