We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9965642 commit 4aeb309Copy full SHA for 4aeb309
profile/preset.go
@@ -79,13 +79,19 @@ func ProtonV1() *Custom {
79
SetKeyAlgorithm: setKeyAlgorithm,
80
Hash: crypto.SHA512,
81
CipherEncryption: packet.CipherAES256,
82
+ CipherKeyEncryption: packet.CipherAES256,
83
CompressionAlgorithm: packet.CompressionZLIB,
84
KeyGenAeadEncryption: &packet.AEADConfig{
85
DefaultMode: packet.AEADModeGCM,
86
},
87
CompressionConfiguration: &packet.CompressionConfig{
88
Level: 6,
89
90
+ S2kKeyEncryption: &s2k.Config{
91
+ S2KMode: s2k.IteratedSaltedS2K,
92
+ Hash: crypto.SHA256,
93
+ S2KCount: 65536,
94
+ },
95
DisableIntendedRecipients: true,
96
AllowAllPublicKeyAlgorithms: true,
97
AllowWeakRSA: true,
0 commit comments