1 Star 0 Fork 0

13683679291/fabric

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
hashopts.go 1.41 KB
一键复制 编辑 原始数据 按行查看 历史
Angelo De Caro 提交于 2017-01-04 13:23 . Moving BCCSP under fabric
/*
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
// SHA256Opts contains options relating to SHA-256.
type SHA256Opts struct {
}
// Algorithm returns the hash algorithm identifier (to be used).
func (opts *SHA256Opts) Algorithm() string {
return SHA256
}
// SHA384Opts contains options relating to SHA-384.
type SHA384Opts struct {
}
// Algorithm returns the hash algorithm identifier (to be used).
func (opts *SHA384Opts) Algorithm() string {
return SHA384
}
// SHA3_256Opts contains options relating to SHA3-256.
type SHA3_256Opts struct {
}
// Algorithm returns the hash algorithm identifier (to be used).
func (opts *SHA3_256Opts) Algorithm() string {
return SHA3_256
}
// SHA3_384Opts contains options relating to SHA3-384.
type SHA3_384Opts struct {
}
// Algorithm returns the hash algorithm identifier (to be used).
func (opts *SHA3_384Opts) Algorithm() string {
return SHA3_384
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mmcro/fabric.git
git@gitee.com:mmcro/fabric.git
mmcro
fabric
fabric
v1.0.0-alpha

搜索帮助