openssl-enc.pod.in 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499
  1. =pod
  2. {- OpenSSL::safe::output_do_not_edit_headers(); -}
  3. =head1 NAME
  4. openssl-enc - symmetric cipher routines
  5. =head1 SYNOPSIS
  6. B<openssl> B<enc>|I<cipher>
  7. [B<-I<cipher>>]
  8. [B<-help>]
  9. [B<-list>]
  10. [B<-ciphers>]
  11. [B<-in> I<filename>]
  12. [B<-out> I<filename>]
  13. [B<-pass> I<arg>]
  14. [B<-e>]
  15. [B<-d>]
  16. [B<-a>]
  17. [B<-base64>]
  18. [B<-A>]
  19. [B<-k> I<password>]
  20. [B<-kfile> I<filename>]
  21. [B<-K> I<key>]
  22. [B<-iv> I<IV>]
  23. [B<-S> I<salt>]
  24. [B<-salt>]
  25. [B<-nosalt>]
  26. [B<-z>]
  27. [B<-md> I<digest>]
  28. [B<-iter> I<count>]
  29. [B<-pbkdf2>]
  30. [B<-saltlen> I<size>]
  31. [B<-p>]
  32. [B<-P>]
  33. [B<-bufsize> I<number>]
  34. [B<-nopad>]
  35. [B<-v>]
  36. [B<-debug>]
  37. [B<-none>]
  38. {- $OpenSSL::safe::opt_engine_synopsis -}{- $OpenSSL::safe::opt_r_synopsis -}
  39. {- $OpenSSL::safe::opt_provider_synopsis -}
  40. B<openssl> I<cipher> [B<...>]
  41. =head1 DESCRIPTION
  42. The symmetric cipher commands allow data to be encrypted or decrypted
  43. using various block and stream ciphers using keys based on passwords
  44. or explicitly provided. Base64 encoding or decoding can also be performed
  45. either by itself or in addition to the encryption or decryption.
  46. =head1 OPTIONS
  47. =over 4
  48. =item B<-I<cipher>>
  49. The cipher to use.
  50. =item B<-help>
  51. Print out a usage message.
  52. =item B<-list>
  53. List all supported ciphers.
  54. =item B<-ciphers>
  55. Alias of -list to display all supported ciphers.
  56. =item B<-in> I<filename>
  57. The input filename, standard input by default.
  58. =item B<-out> I<filename>
  59. The output filename, standard output by default.
  60. =item B<-pass> I<arg>
  61. The password source. For more information about the format of I<arg>
  62. see L<openssl-passphrase-options(1)>.
  63. =item B<-e>
  64. Encrypt the input data: this is the default.
  65. =item B<-d>
  66. Decrypt the input data.
  67. =item B<-a>
  68. Base64 process the data. This means that if encryption is taking place
  69. the data is base64 encoded after encryption. If decryption is set then
  70. the input data is base64 decoded before being decrypted.
  71. When the B<-A> option not given,
  72. on encoding a newline is inserted after each 64 characters, and
  73. on decoding a newline is expected among the first 1024 bytes of input.
  74. =item B<-base64>
  75. Same as B<-a>
  76. =item B<-A>
  77. If the B<-a> option is set then base64 encoding produces output without any
  78. newline character, and base64 decoding does not require any newlines.
  79. Therefore it can be helpful to use the B<-A> option when decoding unknown input.
  80. =item B<-k> I<password>
  81. The password to derive the key from. This is for compatibility with previous
  82. versions of OpenSSL. Superseded by the B<-pass> argument.
  83. =item B<-kfile> I<filename>
  84. Read the password to derive the key from the first line of I<filename>.
  85. This is for compatibility with previous versions of OpenSSL. Superseded by
  86. the B<-pass> argument.
  87. =item B<-md> I<digest>
  88. Use the specified digest to create the key from the passphrase.
  89. The default algorithm is sha-256.
  90. =item B<-iter> I<count>
  91. Use a given number of iterations on the password in deriving the encryption key.
  92. High values increase the time required to brute-force the resulting file.
  93. This option enables the use of PBKDF2 algorithm to derive the key.
  94. =item B<-pbkdf2>
  95. Use PBKDF2 algorithm with a default iteration count of 10000
  96. unless otherwise specified by the B<-iter> command line option.
  97. =item B<-saltlen>
  98. Set the salt length to use when using the B<-pbkdf2> option.
  99. For compatibility reasons, the default is 8 bytes.
  100. The maximum value is currently 16 bytes.
  101. If the B<-pbkdf2> option is not used, then this option is ignored
  102. and a fixed salt length of 8 is used. The salt length used when
  103. encrypting must also be used when decrypting.
  104. =item B<-nosalt>
  105. Don't use a salt in the key derivation routines. This option B<SHOULD NOT> be
  106. used except for test purposes or compatibility with ancient versions of
  107. OpenSSL.
  108. =item B<-salt>
  109. Use salt (randomly generated or provide with B<-S> option) when
  110. encrypting, this is the default.
  111. =item B<-S> I<salt>
  112. The actual salt to use: this must be represented as a string of hex digits.
  113. If this option is used while encrypting, the same exact value will be needed
  114. again during decryption. This salt may be truncated or zero padded to
  115. match the salt length (See B<-saltlen>).
  116. =item B<-K> I<key>
  117. The actual key to use: this must be represented as a string comprised only
  118. of hex digits. If only the key is specified, the IV must additionally specified
  119. using the B<-iv> option. When both a key and a password are specified, the
  120. key given with the B<-K> option will be used and the IV generated from the
  121. password will be taken. It does not make much sense to specify both key
  122. and password.
  123. =item B<-iv> I<IV>
  124. The actual IV to use: this must be represented as a string comprised only
  125. of hex digits. When only the key is specified using the B<-K> option, the
  126. IV must explicitly be defined. When a password is being specified using
  127. one of the other options, the IV is generated from this password.
  128. =item B<-p>
  129. Print out the key and IV used.
  130. =item B<-P>
  131. Print out the key and IV used then immediately exit: don't do any encryption
  132. or decryption.
  133. =item B<-bufsize> I<number>
  134. Set the buffer size for I/O.
  135. =item B<-nopad>
  136. Disable standard block padding.
  137. =item B<-v>
  138. Verbose print; display some statistics about I/O and buffer sizes.
  139. =item B<-debug>
  140. Debug the BIOs used for I/O.
  141. =item B<-z>
  142. Compress or decompress encrypted data using zlib after encryption or before
  143. decryption. This option exists only if OpenSSL was compiled with the zlib
  144. or zlib-dynamic option.
  145. =item B<-none>
  146. Use NULL cipher (no encryption or decryption of input).
  147. {- $OpenSSL::safe::opt_r_item -}
  148. {- $OpenSSL::safe::opt_provider_item -}
  149. {- $OpenSSL::safe::opt_engine_item -}
  150. =back
  151. =head1 NOTES
  152. The program can be called either as C<openssl I<cipher>> or
  153. C<openssl enc -I<cipher>>. The first form doesn't work with
  154. engine-provided ciphers, because this form is processed before the
  155. configuration file is read and any ENGINEs loaded.
  156. Use the L<openssl-list(1)> command to get a list of supported ciphers.
  157. Engines which provide entirely new encryption algorithms (such as the ccgost
  158. engine which provides gost89 algorithm) should be configured in the
  159. configuration file. Engines specified on the command line using B<-engine>
  160. option can only be used for hardware-assisted implementations of
  161. ciphers which are supported by the OpenSSL core or another engine specified
  162. in the configuration file.
  163. When the enc command lists supported ciphers, ciphers provided by engines,
  164. specified in the configuration files are listed too.
  165. A password will be prompted for to derive the key and IV if necessary.
  166. The B<-salt> option should B<ALWAYS> be used if the key is being derived
  167. from a password unless you want compatibility with previous versions of
  168. OpenSSL.
  169. Without the B<-salt> option it is possible to perform efficient dictionary
  170. attacks on the password and to attack stream cipher encrypted data. The reason
  171. for this is that without the salt the same password always generates the same
  172. encryption key.
  173. When the salt is generated at random (that means when encrypting using a
  174. passphrase without explicit salt given using B<-S> option), the first bytes
  175. of the encrypted data are reserved to store the salt for later decrypting.
  176. Some of the ciphers do not have large keys and others have security
  177. implications if not used correctly. A beginner is advised to just use
  178. a strong block cipher, such as AES, in CBC mode.
  179. All the block ciphers normally use PKCS#5 padding, also known as standard
  180. block padding. This allows a rudimentary integrity or password check to
  181. be performed. However, since the chance of random data passing the test
  182. is better than 1 in 256 it isn't a very good test.
  183. If padding is disabled then the input data must be a multiple of the cipher
  184. block length.
  185. All RC2 ciphers have the same key and effective key length.
  186. Blowfish and RC5 algorithms use a 128 bit key.
  187. Please note that OpenSSL 3.0 changed the effect of the B<-S> option.
  188. Any explicit salt value specified via this option is no longer prepended to the
  189. ciphertext when encrypting, and must again be explicitly provided when decrypting.
  190. Conversely, when the B<-S> option is used during decryption, the ciphertext
  191. is expected to not have a prepended salt value.
  192. When using OpenSSL 3.0 or later to decrypt data that was encrypted with an
  193. explicit salt under OpenSSL 1.1.1 do not use the B<-S> option, the salt will
  194. then be read from the ciphertext.
  195. To generate ciphertext that can be decrypted with OpenSSL 1.1.1 do not use
  196. the B<-S> option, the salt will be then be generated randomly and prepended
  197. to the output.
  198. =head1 SUPPORTED CIPHERS
  199. Note that some of these ciphers can be disabled at compile time
  200. and some are available only if an appropriate engine is configured
  201. in the configuration file. The output when invoking this command
  202. with the B<-list> option (that is C<openssl enc -list>) is
  203. a list of ciphers, supported by your version of OpenSSL, including
  204. ones provided by configured engines.
  205. This command does not support authenticated encryption modes
  206. like CCM and GCM, and will not support such modes in the future.
  207. This is due to having to begin streaming output (e.g., to standard output
  208. when B<-out> is not used) before the authentication tag could be validated.
  209. When this command is used in a pipeline, the receiving end will not be
  210. able to roll back upon authentication failure. The AEAD modes currently in
  211. common use also suffer from catastrophic failure of confidentiality and/or
  212. integrity upon reuse of key/iv/nonce, and since B<openssl enc> places the
  213. entire burden of key/iv/nonce management upon the user, the risk of
  214. exposing AEAD modes is too great to allow. These key/iv/nonce
  215. management issues also affect other modes currently exposed in this command,
  216. but the failure modes are less extreme in these cases, and the
  217. functionality cannot be removed with a stable release branch.
  218. For bulk encryption of data, whether using authenticated encryption
  219. modes or other modes, L<openssl-cms(1)> is recommended, as it provides a
  220. standard data format and performs the needed key/iv/nonce management.
  221. When enc is used with key wrapping modes the input data cannot be streamed,
  222. meaning it must be processed in a single pass.
  223. Consequently, the input data size must be less than
  224. the buffer size (-bufsize arg, default to 8*1024 bytes).
  225. The '*-wrap' ciphers require the input to be a multiple of 8 bytes long,
  226. because no padding is involved.
  227. The '*-wrap-pad' ciphers allow any input length.
  228. In both cases, no IV is needed. See example below.
  229. base64 Base 64
  230. bf-cbc Blowfish in CBC mode
  231. bf Alias for bf-cbc
  232. blowfish Alias for bf-cbc
  233. bf-cfb Blowfish in CFB mode
  234. bf-ecb Blowfish in ECB mode
  235. bf-ofb Blowfish in OFB mode
  236. cast-cbc CAST in CBC mode
  237. cast Alias for cast-cbc
  238. cast5-cbc CAST5 in CBC mode
  239. cast5-cfb CAST5 in CFB mode
  240. cast5-ecb CAST5 in ECB mode
  241. cast5-ofb CAST5 in OFB mode
  242. chacha20 ChaCha20 algorithm
  243. des-cbc DES in CBC mode
  244. des Alias for des-cbc
  245. des-cfb DES in CFB mode
  246. des-ofb DES in OFB mode
  247. des-ecb DES in ECB mode
  248. des-ede-cbc Two key triple DES EDE in CBC mode
  249. des-ede Two key triple DES EDE in ECB mode
  250. des-ede-cfb Two key triple DES EDE in CFB mode
  251. des-ede-ofb Two key triple DES EDE in OFB mode
  252. des-ede3-cbc Three key triple DES EDE in CBC mode
  253. des-ede3 Three key triple DES EDE in ECB mode
  254. des3 Alias for des-ede3-cbc
  255. des-ede3-cfb Three key triple DES EDE CFB mode
  256. des-ede3-ofb Three key triple DES EDE in OFB mode
  257. desx DESX algorithm.
  258. gost89 GOST 28147-89 in CFB mode (provided by ccgost engine)
  259. gost89-cnt GOST 28147-89 in CNT mode (provided by ccgost engine)
  260. idea-cbc IDEA algorithm in CBC mode
  261. idea same as idea-cbc
  262. idea-cfb IDEA in CFB mode
  263. idea-ecb IDEA in ECB mode
  264. idea-ofb IDEA in OFB mode
  265. rc2-cbc 128 bit RC2 in CBC mode
  266. rc2 Alias for rc2-cbc
  267. rc2-cfb 128 bit RC2 in CFB mode
  268. rc2-ecb 128 bit RC2 in ECB mode
  269. rc2-ofb 128 bit RC2 in OFB mode
  270. rc2-64-cbc 64 bit RC2 in CBC mode
  271. rc2-40-cbc 40 bit RC2 in CBC mode
  272. rc4 128 bit RC4
  273. rc4-64 64 bit RC4
  274. rc4-40 40 bit RC4
  275. rc5-cbc RC5 cipher in CBC mode
  276. rc5 Alias for rc5-cbc
  277. rc5-cfb RC5 cipher in CFB mode
  278. rc5-ecb RC5 cipher in ECB mode
  279. rc5-ofb RC5 cipher in OFB mode
  280. seed-cbc SEED cipher in CBC mode
  281. seed Alias for seed-cbc
  282. seed-cfb SEED cipher in CFB mode
  283. seed-ecb SEED cipher in ECB mode
  284. seed-ofb SEED cipher in OFB mode
  285. sm4-cbc SM4 cipher in CBC mode
  286. sm4 Alias for sm4-cbc
  287. sm4-cfb SM4 cipher in CFB mode
  288. sm4-ctr SM4 cipher in CTR mode
  289. sm4-ecb SM4 cipher in ECB mode
  290. sm4-ofb SM4 cipher in OFB mode
  291. aes-[128|192|256]-cbc 128/192/256 bit AES in CBC mode
  292. aes[128|192|256] Alias for aes-[128|192|256]-cbc
  293. aes-[128|192|256]-cfb 128/192/256 bit AES in 128 bit CFB mode
  294. aes-[128|192|256]-cfb1 128/192/256 bit AES in 1 bit CFB mode
  295. aes-[128|192|256]-cfb8 128/192/256 bit AES in 8 bit CFB mode
  296. aes-[128|192|256]-ctr 128/192/256 bit AES in CTR mode
  297. aes-[128|192|256]-ecb 128/192/256 bit AES in ECB mode
  298. aes-[128|192|256]-ofb 128/192/256 bit AES in OFB mode
  299. aes-[128|192|256]-wrap key wrapping using 128/192/256 bit AES
  300. aes-[128|192|256]-wrap-pad key wrapping with padding using 128/192/256 bit AES
  301. aria-[128|192|256]-cbc 128/192/256 bit ARIA in CBC mode
  302. aria[128|192|256] Alias for aria-[128|192|256]-cbc
  303. aria-[128|192|256]-cfb 128/192/256 bit ARIA in 128 bit CFB mode
  304. aria-[128|192|256]-cfb1 128/192/256 bit ARIA in 1 bit CFB mode
  305. aria-[128|192|256]-cfb8 128/192/256 bit ARIA in 8 bit CFB mode
  306. aria-[128|192|256]-ctr 128/192/256 bit ARIA in CTR mode
  307. aria-[128|192|256]-ecb 128/192/256 bit ARIA in ECB mode
  308. aria-[128|192|256]-ofb 128/192/256 bit ARIA in OFB mode
  309. camellia-[128|192|256]-cbc 128/192/256 bit Camellia in CBC mode
  310. camellia[128|192|256] Alias for camellia-[128|192|256]-cbc
  311. camellia-[128|192|256]-cfb 128/192/256 bit Camellia in 128 bit CFB mode
  312. camellia-[128|192|256]-cfb1 128/192/256 bit Camellia in 1 bit CFB mode
  313. camellia-[128|192|256]-cfb8 128/192/256 bit Camellia in 8 bit CFB mode
  314. camellia-[128|192|256]-ctr 128/192/256 bit Camellia in CTR mode
  315. camellia-[128|192|256]-ecb 128/192/256 bit Camellia in ECB mode
  316. camellia-[128|192|256]-ofb 128/192/256 bit Camellia in OFB mode
  317. =head1 EXAMPLES
  318. Just base64 encode a binary file:
  319. openssl base64 -in file.bin -out file.b64
  320. Decode the same file
  321. openssl base64 -d -in file.b64 -out file.bin
  322. Encrypt a file using AES-128 using a prompted password
  323. and PBKDF2 key derivation:
  324. openssl enc -aes128 -pbkdf2 -in file.txt -out file.aes128
  325. Decrypt a file using a supplied password:
  326. openssl enc -aes128 -pbkdf2 -d -in file.aes128 -out file.txt \
  327. -pass pass:<password>
  328. Encrypt a file then base64 encode it (so it can be sent via mail for example)
  329. using AES-256 in CTR mode and PBKDF2 key derivation:
  330. openssl enc -aes-256-ctr -pbkdf2 -a -in file.txt -out file.aes256
  331. Base64 decode a file then decrypt it using a password supplied in a file:
  332. openssl enc -aes-256-ctr -pbkdf2 -d -a -in file.aes256 -out file.txt \
  333. -pass file:<passfile>
  334. AES key wrapping:
  335. openssl enc -e -a -id-aes128-wrap-pad -K 000102030405060708090A0B0C0D0E0F -in file.bin
  336. or
  337. openssl aes128-wrap-pad -e -a -K 000102030405060708090A0B0C0D0E0F -in file.bin
  338. =head1 BUGS
  339. The B<-A> option when used with large files doesn't work properly.
  340. On the other hand, when base64 decoding without the B<-A> option,
  341. if the first 1024 bytes of input do not include a newline character
  342. the first two lines of input are ignored.
  343. The B<openssl enc> command only supports a fixed number of algorithms with
  344. certain parameters. So if, for example, you want to use RC2 with a
  345. 76 bit key or RC4 with an 84 bit key you can't use this program.
  346. =head1 HISTORY
  347. The default digest was changed from MD5 to SHA256 in OpenSSL 1.1.0.
  348. The B<-list> option was added in OpenSSL 1.1.1e.
  349. The B<-ciphers> and B<-engine> options were deprecated in OpenSSL 3.0.
  350. The B<-saltlen> option was added in OpenSSL 3.2.
  351. =head1 COPYRIGHT
  352. Copyright 2000-2024 The OpenSSL Project Authors. All Rights Reserved.
  353. Licensed under the Apache License 2.0 (the "License"). You may not use
  354. this file except in compliance with the License. You can obtain a copy
  355. in the file LICENSE in the source distribution or at
  356. L<https://www.openssl.org/source/license.html>.
  357. =cut