Update github.com/containerd/imgcrypt to v2.0.0

Signed-off-by: Kirtana Ashok <kiashok@microsoft.com>
This commit is contained in:
Kirtana Ashok
2025-01-30 10:09:20 -08:00
parent 0fbf3c3b38
commit 9d5cfce833
95 changed files with 6120 additions and 543 deletions

View File

@@ -0,0 +1,14 @@
package legacyx509
import "fmt"
// legacyGodebugSetting is a type mimicking Go's internal godebug package
// settings, which are used to enable / disable certain functionalities at
// build time.
type legacyGodebugSetting int
func (s legacyGodebugSetting) Value() string {
return fmt.Sprintf("%d", s)
}
func (s legacyGodebugSetting) IncNonDefault() {}