
/*

To compile use:
g++ dropbox-pw.cc -o dropbox-pw

To execute use:
encfs ~/.forbidden ~/Forbidden --extpass=dropbox-pw

*/

#include <iostream>

int main()
{
        std::cout << "YOUR-ENCRYPTION-KEY-HERE" << std::endl;
        return 0;
}

