Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
G
golang
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
golang
Commits
e2348dee
Commit
e2348dee
authored
Apr 11, 2011
by
Mikkel Krautz
Committed by
Adam Langley
Apr 11, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crypto/x509: expose complete DER data
R=agl1 CC=golang-dev
https://golang.org/cl/4376049
parent
fe3dcfee
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
x509.go
src/pkg/crypto/x509/x509.go
+7
-3
No files found.
src/pkg/crypto/x509/x509.go
View file @
e2348dee
...
...
@@ -90,6 +90,7 @@ func MarshalPKCS1PrivateKey(key *rsa.PrivateKey) []byte {
// These structures reflect the ASN.1 structure of X.509 certificates.:
type
certificate
struct
{
Raw
asn1
.
RawContent
TBSCertificate
tbsCertificate
SignatureAlgorithm
algorithmIdentifier
SignatureValue
asn1
.
BitString
...
...
@@ -343,7 +344,8 @@ const (
// A Certificate represents an X.509 certificate.
type
Certificate
struct
{
Raw
[]
byte
// Raw ASN.1 DER contents.
Raw
[]
byte
// Complete ASN.1 DER content (certificate, signature algorithm and signature).
RawTBSCertificate
[]
byte
// Certificate part of raw ASN.1 DER content.
Signature
[]
byte
SignatureAlgorithm
SignatureAlgorithm
...
...
@@ -434,7 +436,7 @@ func (c *Certificate) CheckSignatureFrom(parent *Certificate) (err os.Error) {
return
UnsupportedAlgorithmError
{}
}
h
.
Write
(
c
.
Raw
)
h
.
Write
(
c
.
Raw
TBSCertificate
)
digest
:=
h
.
Sum
()
return
rsa
.
VerifyPKCS1v15
(
pub
,
hashType
,
digest
,
c
.
Signature
)
...
...
@@ -558,7 +560,8 @@ func parsePublicKey(algo PublicKeyAlgorithm, asn1Data []byte) (interface{}, os.E
func
parseCertificate
(
in
*
certificate
)
(
*
Certificate
,
os
.
Error
)
{
out
:=
new
(
Certificate
)
out
.
Raw
=
in
.
TBSCertificate
.
Raw
out
.
Raw
=
in
.
Raw
out
.
RawTBSCertificate
=
in
.
TBSCertificate
.
Raw
out
.
Signature
=
in
.
SignatureValue
.
RightAlign
()
out
.
SignatureAlgorithm
=
...
...
@@ -996,6 +999,7 @@ func CreateCertificate(rand io.Reader, template, parent *Certificate, pub *rsa.P
}
cert
,
err
=
asn1
.
Marshal
(
certificate
{
nil
,
c
,
algorithmIdentifier
{
oidSHA1WithRSA
},
asn1
.
BitString
{
Bytes
:
signature
,
BitLength
:
len
(
signature
)
*
8
},
...
...
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