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 78fc404 commit 83481d9Copy full SHA for 83481d9
profile/preset.go
@@ -82,13 +82,19 @@ func ProtonV1() *Custom {
82
SetKeyAlgorithm: setKeyAlgorithm,
83
Hash: crypto.SHA512,
84
CipherEncryption: packet.CipherAES256,
85
+ CipherKeyEncryption: packet.CipherAES256,
86
CompressionAlgorithm: packet.CompressionZLIB,
87
KeyGenAeadEncryption: &packet.AEADConfig{
88
DefaultMode: packet.AEADModeGCM,
89
},
90
CompressionConfiguration: &packet.CompressionConfig{
91
Level: 6,
92
93
+ S2kKeyEncryption: &s2k.Config{
94
+ S2KMode: s2k.IteratedSaltedS2K,
95
+ Hash: crypto.SHA256,
96
+ S2KCount: 65536,
97
+ },
98
DisableIntendedRecipients: true,
99
AllowAllPublicKeyAlgorithms: true,
100
AllowWeakRSA: true,
0 commit comments