Skip to content

Commit 4cf2b8f

Browse files
committedApr 7, 2017
Removing BCCSP defaults usage
This change-set does the following: 1. Removes references to BCCSP defaults opts like SHAOpts. This comes in the context of https://jira.hyperledger.org/browse/FAB-2362 Change-Id: Iddcb5ded78529658f8f4327267468f191a518bc5 Signed-off-by: Angelo De Caro <adc@zurich.ibm.com>
1 parent a443a59 commit 4cf2b8f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎msp/identities.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ func (id *identity) Verify(msg []byte, sig []byte) error {
101101
// mspLogger.Infof("Verifying signature")
102102

103103
// Compute Hash
104-
digest, err := id.msp.bccsp.Hash(msg, &bccsp.SHAOpts{})
104+
digest, err := id.msp.bccsp.Hash(msg, &bccsp.SHA256Opts{})
105105
if err != nil {
106106
return fmt.Errorf("Failed computing digest [%s]", err)
107107
}
@@ -170,7 +170,7 @@ func (id *signingidentity) Sign(msg []byte) ([]byte, error) {
170170
//mspLogger.Infof("Signing message")
171171

172172
// Compute Hash
173-
digest, err := id.msp.bccsp.Hash(msg, &bccsp.SHAOpts{})
173+
digest, err := id.msp.bccsp.Hash(msg, &bccsp.SHA256Opts{})
174174
if err != nil {
175175
return nil, fmt.Errorf("Failed computing digest [%s]", err)
176176
}

‎protos/utils/txutils.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ func GetProposalHash2(header *common.Header, ccPropPayl []byte) ([]byte, error)
328328
return nil, fmt.Errorf("Nil arguments")
329329
}
330330

331-
hash, err := factory.GetDefault().GetHash(&bccsp.SHAOpts{})
331+
hash, err := factory.GetDefault().GetHash(&bccsp.SHA256Opts{})
332332
if err != nil {
333333
return nil, fmt.Errorf("Failed instantiating hash function [%s]", err)
334334
}
@@ -362,7 +362,7 @@ func GetProposalHash1(header *common.Header, ccPropPayl []byte, visibility []byt
362362
return nil, err
363363
}
364364

365-
hash2, err := factory.GetDefault().GetHash(&bccsp.SHAOpts{})
365+
hash2, err := factory.GetDefault().GetHash(&bccsp.SHA256Opts{})
366366
if err != nil {
367367
return nil, fmt.Errorf("Failed instantiating hash function [%s]", err)
368368
}

0 commit comments

Comments
 (0)