question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Provide custom encryption Salt and Rounds in version 2.x

See original GitHub issue

Before version 2 i was doing this:

opts.EncryptionKey = new SymmetricKey("KeySeed", "SaltText", rounds);

Now a custom Salt and Rounds cannot be provided:

var config = new DatabaseConfiguration
{
    EncryptionKey = new EncryptionKey("KeySeed") // using default salt and rounds
};

Will that functionality be provided again?

Issue Analytics

  • State:open
  • Created 5 years ago
  • Reactions:1
  • Comments:5 (4 by maintainers)

github_iconTop GitHub Comments

1reaction
alexrainmancommented, Jun 1, 2019

Good to know you guys are considering this. I also hope encryption becomes again a free feature. Thanks

0reactions
borrrdencommented, Sep 13, 2019

Tracking in CBL-401 (but status still remains undiscussed)

Read more comments on GitHub >

github_iconTop Results From Across the Web

Salt and hash a password in Python
Using bcrypt, the salt is saved into the hash itself return ... Hash the provided password with a randomly-generated salt and return the ......
Read more >
passwords - What are SHA-rounds?
-s, --sha-rounds ROUNDS Use the specified number of rounds to encrypt the passwords. The value 0 means that the system will choose the...
Read more >
Hashing in Action: Understanding bcrypt
Technique 2: Auto-generate a salt and a hash​​ In this version, we use a single function to both create the salt and hash...
Read more >
crypt - Manual
If the salt string starts with 'rounds=<N>$', the numeric value of N is used to indicate how many times the hashing loop should...
Read more >
The difference between Encryption, Hashing and Salting
Encryption, Hashing, and Salting are three different concepts for three different purposes. Learn about what they do here.
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found