mirror of
https://github.com/containers/podman.git
synced 2025-10-16 18:53:19 +08:00
![dependabot[bot]](/assets/img/avatar_default.png)
Bumps [github.com/ulikunitz/xz](https://github.com/ulikunitz/xz) from 0.5.10 to 0.5.11. - [Release notes](https://github.com/ulikunitz/xz/releases) - [Commits](https://github.com/ulikunitz/xz/compare/v0.5.10...v0.5.11) --- updated-dependencies: - dependency-name: github.com/ulikunitz/xz dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
24 lines
519 B
Go
24 lines
519 B
Go
// Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package xz
|
|
|
|
import "hash"
|
|
|
|
type noneHash struct{}
|
|
|
|
func (h noneHash) Write(p []byte) (n int, err error) { return len(p), nil }
|
|
|
|
func (h noneHash) Sum(b []byte) []byte { return b }
|
|
|
|
func (h noneHash) Reset() {}
|
|
|
|
func (h noneHash) Size() int { return 0 }
|
|
|
|
func (h noneHash) BlockSize() int { return 0 }
|
|
|
|
func newNoneHash() hash.Hash {
|
|
return &noneHash{}
|
|
}
|