Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
dms3
go-dms3
Commits
2ed7da8c
Commit
2ed7da8c
authored
10 years ago
by
Brian Tiger Chow
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
refactor(crypto) mv proto PBPublicKey -> PublicKey, etc.
parent
fdcf3f6d
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
20 additions
and
20 deletions
+20
-20
crypto/internal/pb/crypto.pb.go
crypto/internal/pb/crypto.pb.go
+14
-14
crypto/internal/pb/crypto.proto
crypto/internal/pb/crypto.proto
+2
-2
crypto/key.go
crypto/key.go
+2
-2
crypto/rsa.go
crypto/rsa.go
+2
-2
No files found.
crypto/internal/pb/crypto.pb.go
View file @
2ed7da8c
...
...
@@ -9,8 +9,8 @@ It is generated from these files:
crypto.proto
It has these top-level messages:
PB
PublicKey
PB
PrivateKey
PublicKey
PrivateKey
*/
package
crypto_pb
...
...
@@ -51,48 +51,48 @@ func (x *KeyType) UnmarshalJSON(data []byte) error {
return
nil
}
type
PB
PublicKey
struct
{
type
PublicKey
struct
{
Type
*
KeyType
`protobuf:"varint,1,req,enum=crypto.pb.KeyType" json:"Type,omitempty"`
Data
[]
byte
`protobuf:"bytes,2,req" json:"Data,omitempty"`
XXX_unrecognized
[]
byte
`json:"-"`
}
func
(
m
*
PB
PublicKey
)
Reset
()
{
*
m
=
PB
PublicKey
{}
}
func
(
m
*
PB
PublicKey
)
String
()
string
{
return
proto
.
CompactTextString
(
m
)
}
func
(
*
PB
PublicKey
)
ProtoMessage
()
{}
func
(
m
*
PublicKey
)
Reset
()
{
*
m
=
PublicKey
{}
}
func
(
m
*
PublicKey
)
String
()
string
{
return
proto
.
CompactTextString
(
m
)
}
func
(
*
PublicKey
)
ProtoMessage
()
{}
func
(
m
*
PB
PublicKey
)
GetType
()
KeyType
{
func
(
m
*
PublicKey
)
GetType
()
KeyType
{
if
m
!=
nil
&&
m
.
Type
!=
nil
{
return
*
m
.
Type
}
return
KeyType_RSA
}
func
(
m
*
PB
PublicKey
)
GetData
()
[]
byte
{
func
(
m
*
PublicKey
)
GetData
()
[]
byte
{
if
m
!=
nil
{
return
m
.
Data
}
return
nil
}
type
PB
PrivateKey
struct
{
type
PrivateKey
struct
{
Type
*
KeyType
`protobuf:"varint,1,req,enum=crypto.pb.KeyType" json:"Type,omitempty"`
Data
[]
byte
`protobuf:"bytes,2,req" json:"Data,omitempty"`
XXX_unrecognized
[]
byte
`json:"-"`
}
func
(
m
*
PB
PrivateKey
)
Reset
()
{
*
m
=
PB
PrivateKey
{}
}
func
(
m
*
PB
PrivateKey
)
String
()
string
{
return
proto
.
CompactTextString
(
m
)
}
func
(
*
PB
PrivateKey
)
ProtoMessage
()
{}
func
(
m
*
PrivateKey
)
Reset
()
{
*
m
=
PrivateKey
{}
}
func
(
m
*
PrivateKey
)
String
()
string
{
return
proto
.
CompactTextString
(
m
)
}
func
(
*
PrivateKey
)
ProtoMessage
()
{}
func
(
m
*
PB
PrivateKey
)
GetType
()
KeyType
{
func
(
m
*
PrivateKey
)
GetType
()
KeyType
{
if
m
!=
nil
&&
m
.
Type
!=
nil
{
return
*
m
.
Type
}
return
KeyType_RSA
}
func
(
m
*
PB
PrivateKey
)
GetData
()
[]
byte
{
func
(
m
*
PrivateKey
)
GetData
()
[]
byte
{
if
m
!=
nil
{
return
m
.
Data
}
...
...
This diff is collapsed.
Click to expand it.
crypto/internal/pb/crypto.proto
View file @
2ed7da8c
...
...
@@ -4,12 +4,12 @@ enum KeyType {
RSA
=
0
;
}
message
PB
PublicKey
{
message
PublicKey
{
required
KeyType
Type
=
1
;
required
bytes
Data
=
2
;
}
message
PB
PrivateKey
{
message
PrivateKey
{
required
KeyType
Type
=
1
;
required
bytes
Data
=
2
;
}
This diff is collapsed.
Click to expand it.
crypto/key.go
View file @
2ed7da8c
...
...
@@ -206,7 +206,7 @@ func KeyStretcher(cmp int, cipherType string, hashType string, secret []byte) ([
}
func
UnmarshalPublicKey
(
data
[]
byte
)
(
PubKey
,
error
)
{
pmes
:=
new
(
pb
.
PB
PublicKey
)
pmes
:=
new
(
pb
.
PublicKey
)
err
:=
proto
.
Unmarshal
(
data
,
pmes
)
if
err
!=
nil
{
return
nil
,
err
...
...
@@ -221,7 +221,7 @@ func UnmarshalPublicKey(data []byte) (PubKey, error) {
}
func
UnmarshalPrivateKey
(
data
[]
byte
)
(
PrivKey
,
error
)
{
pmes
:=
new
(
pb
.
PB
PrivateKey
)
pmes
:=
new
(
pb
.
PrivateKey
)
err
:=
proto
.
Unmarshal
(
data
,
pmes
)
if
err
!=
nil
{
return
nil
,
err
...
...
This diff is collapsed.
Click to expand it.
crypto/rsa.go
View file @
2ed7da8c
...
...
@@ -36,7 +36,7 @@ func (pk *RsaPublicKey) Bytes() ([]byte, error) {
return
nil
,
err
}
pbmes
:=
new
(
pb
.
PB
PublicKey
)
pbmes
:=
new
(
pb
.
PublicKey
)
typ
:=
pb
.
KeyType_RSA
pbmes
.
Type
=
&
typ
pbmes
.
Data
=
b
...
...
@@ -69,7 +69,7 @@ func (sk *RsaPrivateKey) GetPublic() PubKey {
func
(
sk
*
RsaPrivateKey
)
Bytes
()
([]
byte
,
error
)
{
b
:=
x509
.
MarshalPKCS1PrivateKey
(
sk
.
k
)
pbmes
:=
new
(
pb
.
PB
PrivateKey
)
pbmes
:=
new
(
pb
.
PrivateKey
)
typ
:=
pb
.
KeyType_RSA
pbmes
.
Type
=
&
typ
pbmes
.
Data
=
b
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment