I’m trying to create a storage with RSA encryption copying from another existing and encrypted storage (without RSA), both in B2.
I’m running this command to add the new storage:
duplicacy add
-encrypt
-key public.pem
-copy [existing storage]
-repository D:/[redacted]
[new storage]
[rep id]
b2://[new bucket for RSA]
But I’m getting a kind of looping when I run the add
command:
Repository set to D:/[redacted]
Enter Backblaze account or application id: [redacted]
Enter corresponding Backblaze application key: [redacted]
download URL is: https://f002.backblazeb2.com
Enter storage password for b2://[new bucket for RSA]: *****************************
Re-enter storage password: *****************************
Enter Backblaze account or application id: [redacted]
Enter corresponding Backblaze application key: [redacted]
download URL is: https://f002.backblazeb2.com
download URL is: https://f002.backblazeb2.com
download URL is: https://f002.backblazeb2.com
download URL is: https://f002.backblazeb2.com
download URL is: https://f002.backblazeb2.com
download URL is: https://f002.backblazeb2.com
(interrupted with ctrl-c)
Why did it request the app id/key twice?
What am I doing wrong?