1

I'm currently working on an FTP client as a packaged Chrome App.

Is safe to store user credentials for different FTP servers using chrome.storage.*?

0xcaff
  • 13,085
  • 5
  • 47
  • 55
Stefania
  • 791
  • 1
  • 6
  • 17
  • possible duplicate of [How to store a password as securely in Chrome Extension?](http://stackoverflow.com/questions/22090255/how-to-store-a-password-as-securely-in-chrome-extension) – sowbug Mar 13 '14 at 01:16

1 Answers1

0

According to the docs:

Confidential user information should not be stored! The storage area isn't encrypted.

Don't store sensitive information using the chrome.storage.* APIs. See this question for more information.

Community
  • 1
  • 1
0xcaff
  • 13,085
  • 5
  • 47
  • 55