-
Notifications
You must be signed in to change notification settings - Fork 8.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This change-set introduce the concept of KeyStore at the BCCSP level. A KeyStore represents a storage system for cryptographic keys. It allows to store and retrieve bccsp.Key objects. The key store can be read only, in that case storing a key will return an error. Now, to initialize a software-based BCCSP, a key store must be specified. A file based keystore is provided. In addition, all the dependencies from viper has been removed. In order to do that, some assumptions has been made on default security level. The organization of this paramenters will be better addressed in a subsequent change-set. This change-set comes in the context of: https://jira.hyperledger.org/browse/FAB-354 Change-Id: I7e96eea7e5e89ecec86863ebc11b919d29c0019a Signed-off-by: Angelo De Caro <adc@zurich.ibm.com>
- Loading branch information
Showing
10 changed files
with
505 additions
and
388 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
/* | ||
Copyright IBM Corp. 2016 All Rights Reserved. | ||
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 bccsp | ||
|
||
// KeyStore represents a storage system for cryptographic keys. | ||
// It allows to store and retrieve bccsp.Key objects. | ||
// The KeyStore can be read only, in that case StoreKey will return | ||
// an error. | ||
type KeyStore interface { | ||
|
||
// ReadOnly returns true if this KeyStore is read only, false otherwise. | ||
// If ReadOnly is true then StoreKey will fail. | ||
ReadOnly() bool | ||
|
||
// GetKey returns a key object whose SKI is the one passed. | ||
GetKey(ski []byte) (k Key, err error) | ||
|
||
// StoreKey stores the key k in this KeyStore. | ||
// If this KeyStore is read only then the method will fail. | ||
StoreKey(k Key) (err error) | ||
} |
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
Oops, something went wrong.