Symmetric key storage

后端 未结 9 1344
清歌不尽
清歌不尽 2021-01-31 18:48

My company is going to be storing sensitive data for our customers, and will be encrypting data using one of the managed .NET encryption algorithm classes. Most of the work is d

9条回答
  •  孤街浪徒
    2021-01-31 19:17

    Depending on your application you could use the Diffie-Hellman method for two parties to securely agree on a symmetric key.

    After an initial, secure exchange, the key is agreed upon and the rest of the session (or a new session) can use this new symmetric key.

提交回复
热议问题