質問編集履歴

7

カテゴリ追加

2018/10/23 06:46

投稿

ryuta9234
ryuta9234

スコア17

test CHANGED
File without changes
test CHANGED
File without changes

6

カテゴリ追加

2018/10/23 06:46

投稿

ryuta9234
ryuta9234

スコア17

test CHANGED
File without changes
test CHANGED
File without changes

5

行の整理

2018/10/22 06:40

投稿

ryuta9234
ryuta9234

スコア17

test CHANGED
File without changes
test CHANGED
@@ -18,7 +18,9 @@
18
18
 
19
19
 
20
20
 
21
+ 1ファイルのみ
22
+
21
- test1.txt→test1.dat 1ファイルのみ
23
+ test1.txt→test1.dat
22
24
 
23
25
 
24
26
 

4

コード記載

2018/10/22 06:17

投稿

ryuta9234
ryuta9234

スコア17

test CHANGED
File without changes
test CHANGED
@@ -8,7 +8,9 @@
8
8
 
9
9
  before
10
10
 
11
+ ```
12
+
11
- ```$ openssl aes-256-cbc -e -in test1.txt -out test1.dat -p -nosalt
13
+ $ openssl aes-256-cbc -e -in test1.txt -out test1.dat -p -nosalt
12
14
 
13
15
  ```
14
16
 
@@ -22,13 +24,19 @@
22
24
 
23
25
  after
24
26
 
27
+ ```
28
+
25
- ```$ ???
29
+ $ ???
26
30
 
27
31
  ```
28
32
 
29
33
  パスコードを2回入力して暗号化
30
34
 
35
+
36
+
31
37
  複数ファイル
38
+
39
+
32
40
 
33
41
  test1.txt → test1.dat
34
42
 

3

詳細情報の追加

2018/10/22 06:15

投稿

ryuta9234
ryuta9234

スコア17

test CHANGED
File without changes
test CHANGED
@@ -6,11 +6,45 @@
6
6
 
7
7
 
8
8
 
9
+ before
10
+
9
- ```$ openssl aes-256-cbc -e -in test.txt -out test.dat -p -nosalt
11
+ ```$ openssl aes-256-cbc -e -in test1.txt -out test1.dat -p -nosalt
10
12
 
11
13
  ```
12
14
 
13
15
  パスコードを2回入力して暗号化
16
+
17
+
18
+
19
+ test1.txt→test1.dat 1ファイルのみ
20
+
21
+
22
+
23
+ after
24
+
25
+ ```$ ???
26
+
27
+ ```
28
+
29
+ パスコードを2回入力して暗号化
30
+
31
+ 複数ファイル
32
+
33
+ test1.txt → test1.dat
34
+
35
+ test2.txt → test2.dat
36
+
37
+ test3.txt → test3.dat
38
+
39
+ test4.txt → test4.dat
40
+
41
+
42
+
43
+ 〜etc
44
+
45
+
46
+
47
+
14
48
 
15
49
 
16
50
 

2

更新

2018/10/22 06:14

投稿

ryuta9234
ryuta9234

スコア17

test CHANGED
File without changes
test CHANGED
@@ -6,7 +6,7 @@
6
6
 
7
7
 
8
8
 
9
- ```openssl aes-256-cbc -e -in test.txt -out test.dat -p -nosalt
9
+ ```$ openssl aes-256-cbc -e -in test.txt -out test.dat -p -nosalt
10
10
 
11
11
  ```
12
12
 

1

余分な空白を削除

2018/10/22 05:57

投稿

ryuta9234
ryuta9234

スコア17

test CHANGED
File without changes
test CHANGED
@@ -1,16 +1,6 @@
1
1
  ### 前提・実現したいこと
2
2
 
3
3
  opensslを使用してのaesの暗号化処理を複数ファイルに対して行いたいのですが可能でしょうか?
4
-
5
-
6
-
7
- ```
8
-
9
-
10
-
11
- ```
12
-
13
-
14
4
 
15
5
  ### 該当のソースコード
16
6