fix(deps): update module github.com/containers/ocicrypt to v1.2.1

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
This commit is contained in:
renovate[bot]
2024-12-16 18:06:00 +00:00
committed by GitHub
parent f7801f77cc
commit 1866ecbda2
56 changed files with 4854 additions and 479 deletions

View File

@@ -0,0 +1,15 @@
// Copyright 2011 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package legacyx509
import (
"math/big"
)
// pkcs1PublicKey reflects the ASN.1 structure of a PKCS #1 public key.
type pkcs1PublicKey struct {
N *big.Int
E int
}