mirror of https://github.com/docker/docs.git
Fixing rsa hardware crypto service nil-interface bug
Signed-off-by: Diogo Monica <diogo@docker.com>
This commit is contained in:
parent
be1d365626
commit
a2a0385c53
|
|
@ -113,7 +113,11 @@ func (s *RSAHardwareCryptoService) RemoveKey(keyID string) error {
|
||||||
|
|
||||||
// GetKey returns the public components of a particular key
|
// GetKey returns the public components of a particular key
|
||||||
func (s *RSAHardwareCryptoService) GetKey(keyID string) data.PublicKey {
|
func (s *RSAHardwareCryptoService) GetKey(keyID string) data.PublicKey {
|
||||||
return s.keys[keyID]
|
key, ok := s.keys[keyID]
|
||||||
|
if !ok {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
return key
|
||||||
}
|
}
|
||||||
|
|
||||||
// Sign returns a signature for a given signature request
|
// Sign returns a signature for a given signature request
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue