Sublime Forum

[SOLVED][ST4] Encrypt a plaintext document

#1

Hello,
I was used to encrypting my documents with SecurePad with Notepad++.
I didn’t find any similar tool with Sublime Text 4 so this sounds really weird if nothing exists :slight_smile:

Any suggestions?
Thank you!

0 Likes

#2

Maybe https://packagecontrol.io/packages/Crypto

0 Likes

#3

Only for ST2/3 unfortunately.

  • outdated now
0 Likes

#4

Doesn’t run? ST3 plugins should run in ST4 in general.

0 Likes

#5

I have this error message:

[WinError 2] The system cannot find the file specified

Note: I use the portable version of ST and I have no admin access.
I see that several users already reported this error message but it was for Python or C++ codes. My file is just a txt file.

0 Likes

#6

According to package’s readme it requires openssl to perform encryption/decryption.

Make sure you can call openssl from command shell and/or specify the executable path in Crypto.sublime-settings

{
  // The path to your openssl executable
  // e.g. "/usr/bin/openssl" or "C:\\bin\\openssl.exe"
  "openssl_command": "openssl",
}
0 Likes

#7

I didn’t find OpenSSL on my computer…

0 Likes

#8

I switched to Transcrypt and it works fine.

0 Likes