mirror of
https://github.com/vgough/encfs.git
synced 2024-11-21 15:33:16 +01:00
23 lines
546 B
Plaintext
23 lines
546 B
Plaintext
#!/bin/expect -f
|
|
|
|
# Passed by controlling process via "-c"
|
|
#spawn mount -t ecryptfs ecryptfs_ciphertext ecryptfs_plaintext
|
|
|
|
expect "Selection: "
|
|
send "1\n"
|
|
expect "Passphrase: "
|
|
send "test\n"
|
|
expect "Selection \\\[aes\\\]: "
|
|
send "aes\n"
|
|
expect "Selection \\\[16\\\]: "
|
|
send "16\n"
|
|
expect "Enable plaintext passthrough (y/n) \\\[n\\\]: "
|
|
send "n\n"
|
|
expect "Enable filename encryption (y/n) \\\[n\\\]: "
|
|
send "y\n"
|
|
# Filename Encryption Key (FNEK) Signature [d395309aaad4de06]:
|
|
expect "\\\]: "
|
|
send "\n"
|
|
expect "Mounted eCryptfs"
|
|
send_user "\n"
|