-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Junjie Gao <[email protected]>
- Loading branch information
Showing
5 changed files
with
126 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
// Copyright The Notary Project Authors. | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
// Package chain provides the method to validate the certificate chain for a | ||
// specific purpose, including code signing and timestamping. | ||
package chain | ||
|
||
import ( | ||
"crypto/x509" | ||
"fmt" | ||
|
||
"github.com/notaryproject/notation-core-go/revocation/purpose" | ||
"github.com/notaryproject/notation-core-go/revocation/result" | ||
coreX509 "github.com/notaryproject/notation-core-go/x509" | ||
) | ||
|
||
// Validate checks the certificate chain for a specific purpose, including | ||
// code signing and timestamping. | ||
func Validate(certChain []*x509.Certificate, certChainPurpose purpose.Purpose) error { | ||
switch certChainPurpose { | ||
case purpose.CodeSigning: | ||
// Since ValidateCodeSigningCertChain is using authentic signing time, | ||
// signing time may be zero. | ||
// Thus, it is better to pass nil here than fail for a cert's NotBefore | ||
// being after zero time | ||
if err := coreX509.ValidateCodeSigningCertChain(certChain, nil); err != nil { | ||
return result.InvalidChainError{Err: err} | ||
} | ||
case purpose.Timestamping: | ||
if err := coreX509.ValidateTimestampingCertChain(certChain); err != nil { | ||
return result.InvalidChainError{Err: err} | ||
} | ||
default: | ||
return result.InvalidChainError{Err: fmt.Errorf("unsupported certificate chain purpose %v", certChainPurpose)} | ||
} | ||
return nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
// Copyright The Notary Project Authors. | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package chain | ||
|
||
import ( | ||
"crypto/x509" | ||
"testing" | ||
|
||
"github.com/notaryproject/notation-core-go/revocation/purpose" | ||
"github.com/notaryproject/notation-core-go/testhelper" | ||
) | ||
|
||
func TestValidate(t *testing.T) { | ||
t.Run("unsupported_certificate_chain_purpose", func(t *testing.T) { | ||
certChain := []*x509.Certificate{} | ||
certChainPurpose := purpose.Purpose(-1) | ||
err := Validate(certChain, certChainPurpose) | ||
if err == nil { | ||
t.Errorf("Validate() failed, expected error, got nil") | ||
} | ||
}) | ||
|
||
t.Run("invalid code signing certificate chain", func(t *testing.T) { | ||
certChain := []*x509.Certificate{} | ||
certChainPurpose := purpose.CodeSigning | ||
err := Validate(certChain, certChainPurpose) | ||
if err == nil { | ||
t.Errorf("Validate() failed, expected error, got nil") | ||
} | ||
}) | ||
|
||
t.Run("invalid timestamping certificate chain", func(t *testing.T) { | ||
certChain := []*x509.Certificate{} | ||
certChainPurpose := purpose.Timestamping | ||
err := Validate(certChain, certChainPurpose) | ||
if err == nil { | ||
t.Errorf("Validate() failed, expected error, got nil") | ||
} | ||
}) | ||
|
||
t.Run("valid code signing certificate chain", func(t *testing.T) { | ||
certChain := testhelper.GetRevokableRSAChain(2) | ||
certChainPurpose := purpose.CodeSigning | ||
err := Validate([]*x509.Certificate{certChain[0].Cert, certChain[1].Cert}, certChainPurpose) | ||
if err != nil { | ||
t.Errorf("Validate() failed, expected nil, got %v", err) | ||
} | ||
}) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters