mirror of
https://github.com/containers/podman.git
synced 2026-01-28 16:01:41 -05:00
Bumps [github.com/containers/ocicrypt](https://github.com/containers/ocicrypt) from 1.1.5 to 1.1.6. - [Release notes](https://github.com/containers/ocicrypt/releases) - [Commits](https://github.com/containers/ocicrypt/compare/v1.1.5...v1.1.6) --- updated-dependencies: - dependency-name: github.com/containers/ocicrypt dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
17 lines
1.1 KiB
Go
17 lines
1.1 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"
|
|
// MediaTypeLayerGzipEnc is MIME type used for non distributable encrypted gzip-compressed layers.
|
|
MediaTypeLayerNonDistributableGzipEnc = "application/vnd.oci.image.layer.nondistributable.v1.tar+gzip+encrypted"
|
|
// MediaTypeLayerZstdEnc is MIME type used for non distributable encrypted zstd-compressed layers.
|
|
MediaTypeLayerNonDistributableZsdtEnc = "application/vnd.oci.image.layer.nondistributable.v1.tar+zstd+encrypted"
|
|
)
|