Skip to content

Commit 44b7f42

Browse files
committed
Update age dependency and README
1 parent 6de8786 commit 44b7f42

File tree

3 files changed

+10
-12
lines changed

3 files changed

+10
-12
lines changed

README.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,10 @@ This package **does not** provide a CLI. If you need that functionality, check o
88

99
See the upstream `age` [documentation](https://pkg.go.dev/filippo.io/age) for further guidance on working with `age` identities and recipients.
1010

11-
### **This package is currently pre-v1 and is therefore subject to breaking changes.**
12-
1311
## When would you use this?
1412

1513
- You already have key material and want to use it for age operations.
16-
- Your execution environment has the capability to generate cryptographically secure keys, but it prevents your program from persisting custom keys (such as a Kubernetes pod using Hashicorp Vault).
14+
- Your execution environment has the capability to generate cryptographically secure keys, but it prevents your program from persisting custom keys.
1715
- You want to programmatically derive age identities from passwords.
1816

1917
## Installation

go.mod

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ module github.com/awnumar/agekd
33
go 1.23.2
44

55
require (
6-
filippo.io/age v1.2.0
7-
golang.org/x/crypto v0.29.0
6+
filippo.io/age v1.2.1
7+
golang.org/x/crypto v0.32.0
88
)
99

10-
require golang.org/x/sys v0.27.0 // indirect
10+
require golang.org/x/sys v0.29.0 // indirect

go.sum

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
c2sp.org/CCTV/age v0.0.0-20240306222714-3ec4d716e805 h1:u2qwJeEvnypw+OCPUHmoZE3IqwfuN5kgDfo5MLzpNM0=
22
c2sp.org/CCTV/age v0.0.0-20240306222714-3ec4d716e805/go.mod h1:FomMrUJ2Lxt5jCLmZkG3FHa72zUprnhd3v/Z18Snm4w=
3-
filippo.io/age v1.2.0 h1:vRDp7pUMaAJzXNIWJVAZnEf/Dyi4Vu4wI8S1LBzufhE=
4-
filippo.io/age v1.2.0/go.mod h1:JL9ew2lTN+Pyft4RiNGguFfOpewKwSHm5ayKD/A4004=
5-
golang.org/x/crypto v0.29.0 h1:L5SG1JTTXupVV3n6sUqMTeWbjAyfPwoda2DLX8J8FrQ=
6-
golang.org/x/crypto v0.29.0/go.mod h1:+F4F4N5hv6v38hfeYwTdx20oUvLLc+QfrE9Ax9HtgRg=
7-
golang.org/x/sys v0.27.0 h1:wBqf8DvsY9Y/2P8gAfPDEYNuS30J4lPHJxXSb/nJZ+s=
8-
golang.org/x/sys v0.27.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
3+
filippo.io/age v1.2.1 h1:X0TZjehAZylOIj4DubWYU1vWQxv9bJpo+Uu2/LGhi1o=
4+
filippo.io/age v1.2.1/go.mod h1:JL9ew2lTN+Pyft4RiNGguFfOpewKwSHm5ayKD/A4004=
5+
golang.org/x/crypto v0.32.0 h1:euUpcYgM8WcP71gNpTqQCn6rC2t6ULUPiOzfWaXVVfc=
6+
golang.org/x/crypto v0.32.0/go.mod h1:ZnnJkOaASj8g0AjIduWNlq2NRxL0PlBrbKVyZ6V/Ugc=
7+
golang.org/x/sys v0.29.0 h1:TPYlXGxvx1MGTn2GiZDhnjPA9wZzZeGKHHmKhHYvgaU=
8+
golang.org/x/sys v0.29.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=

0 commit comments

Comments
 (0)