mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-09-17 21:27:52 +00:00
Bump github.com/go-jose/go-jose to v3.0.0 and github.com/containers/ocicrypt to v1.1.10 Addresses: CVE-2024-28180 https://issues.redhat.com/browse/OCPBUGS-30785 https://issues.redhat.com/browse/OCPBUGS-30786 https://issues.redhat.com/browse/OCPBUGS-30787 Signed-off-by: tomsweeneyredhat <tsweeney@redhat.com>
20 lines
1.4 KiB
Go
20 lines
1.4 KiB
Go
package spec
|
|
|
|
const (
|
|
// MediaTypeLayerEnc is MIME type used for encrypted layers.
|
|
MediaTypeLayerEnc = "application/vnd.oci.image.layer.v1.tar+encrypted"
|
|
// MediaTypeLayerGzipEnc is MIME type used for encrypted gzip-compressed layers.
|
|
MediaTypeLayerGzipEnc = "application/vnd.oci.image.layer.v1.tar+gzip+encrypted"
|
|
// MediaTypeLayerZstdEnc is MIME type used for encrypted zstd-compressed layers.
|
|
MediaTypeLayerZstdEnc = "application/vnd.oci.image.layer.v1.tar+zstd+encrypted"
|
|
// MediaTypeLayerNonDistributableEnc is MIME type used for non distributable encrypted layers.
|
|
MediaTypeLayerNonDistributableEnc = "application/vnd.oci.image.layer.nondistributable.v1.tar+encrypted"
|
|
// MediaTypeLayerNonDistributableGzipEnc is MIME type used for non distributable encrypted gzip-compressed layers.
|
|
MediaTypeLayerNonDistributableGzipEnc = "application/vnd.oci.image.layer.nondistributable.v1.tar+gzip+encrypted"
|
|
// MediaTypeLayerNonDistributableZstdEnc is MIME type used for non distributable encrypted zstd-compressed layers.
|
|
MediaTypeLayerNonDistributableZstdEnc = "application/vnd.oci.image.layer.nondistributable.v1.tar+zstd+encrypted"
|
|
// MediaTypeLayerNonDistributableZsdtEnc is MIME type used for non distributable encrypted zstd-compressed layers.
|
|
//
|
|
// Deprecated: Use [MediaTypeLayerNonDistributableZstdEnc].
|
|
MediaTypeLayerNonDistributableZsdtEnc = MediaTypeLayerNonDistributableZstdEnc
|
|
)
|