Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update GopenPGP and set version 1.0.0 #33

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmd/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"github.com/ProtonMail/gopenpgp/v3/constants"
)

const VERSION = "2.0.0-alpha"
const VERSION = "1.0.0"
const SOP_VERSION = "~draft-dkg-openpgp-stateless-cli-06"

// Version prints version information about gosop, and/or the
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
module github.com/ProtonMail/gosop

require (
github.com/ProtonMail/go-crypto v1.1.0-alpha.5
github.com/ProtonMail/gopenpgp/v3 v3.0.0-alpha.4
github.com/ProtonMail/go-crypto v1.1.0-beta.0
github.com/ProtonMail/gopenpgp/v3 v3.0.0-beta.0
github.com/cpuguy83/go-md2man/v2 v2.0.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/urfave/cli/v2 v2.2.0
Expand Down
8 changes: 4 additions & 4 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=
github.com/ProtonMail/go-crypto v1.1.0-alpha.5 h1:XdtNqgUwXGClX/O+nSxecHUpgbsOGaUyv22y6p1laNk=
github.com/ProtonMail/go-crypto v1.1.0-alpha.5/go.mod h1:rA3QumHc/FZ8pAHreoekgiAbzpNsfQAosU5td4SnOrE=
github.com/ProtonMail/go-crypto v1.1.0-beta.0 h1:9ZLo7gzqEbrSakeRM4L0jaHMuZSLrjoYBIdIwcBr4C4=
github.com/ProtonMail/go-crypto v1.1.0-beta.0/go.mod h1:rA3QumHc/FZ8pAHreoekgiAbzpNsfQAosU5td4SnOrE=
github.com/ProtonMail/go-mime v0.0.0-20230322103455-7d82a3887f2f/go.mod h1:gcr0kNtGBqin9zDW9GOHcVntrwnjrK+qdJ06mWYBybw=
github.com/ProtonMail/gopenpgp/v3 v3.0.0-alpha.4 h1:4j0aFtErU3KHVGSZljPCTrtk0pUtyKyrDyc1eXARnPs=
github.com/ProtonMail/gopenpgp/v3 v3.0.0-alpha.4/go.mod h1:D8EcScWNoL9mDQ1G8CNLgZeFdOF6R3o3nie6p7U8Zgw=
github.com/ProtonMail/gopenpgp/v3 v3.0.0-beta.0 h1:7J2GzuKAJ4Th2fpRJzujbULEDQBAKXS4s0CKEDefo+Q=
github.com/ProtonMail/gopenpgp/v3 v3.0.0-beta.0/go.mod h1:faQTqe6pVZ92OzsxNnm0L+ufMVs3t0DtA4irl00Lvig=
github.com/bwesterb/go-ristretto v1.2.3/go.mod h1:fUIoIZaG73pV5biE2Blr2xEzDoMj7NFEuV9ekS419A0=
github.com/cloudflare/circl v1.3.7 h1:qlCDlTPz2n9fu58M0Nh1J/JzcFpfgkFHHX3O35r5vcU=
github.com/cloudflare/circl v1.3.7/go.mod h1:sRTcRWXGLrKw6yIGJ+l7amYJFfAXbZG0kBSc8r4zxgA=
Expand Down
1 change: 1 addition & 0 deletions utils/profile.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ func defaultProfile() *profile.Custom {
Name: "default",
SetKeyAlgorithm: setKeyAlgorithm,
Hash: crypto.SHA256,
AeadEncryption: &packet.AEADConfig{},
CipherEncryption: packet.CipherAES256,
CompressionAlgorithm: packet.CompressionZLIB,
CompressionConfiguration: &packet.CompressionConfig{
Expand Down