Posts Tagged 'password hashing'

Encrypting Data with 2-way Encryption

Posted by:

In Encryption and Password Functions we described an overview of different types of encryption available in Studio, and in Password Hashing Techniques we described how to securely store passwords for account validation. That works great when you need to verify a password, but it prevents decrypting the original text, so it won’t work for things like credit card numbers that we need to be able to decrypt at a later date.

Studio supplies two types of 2-way ...

Continue Reading →
0

Password Hashing Technique

Posted by:

Overview

In a previous Knowledge Base article, “Encryption and Password Functions“, we described – at a high level – some of the helper functions we have available to simplify the use of encryption in your API interfaces. In this post, we will take a closer look at the first set of functions that are available to you: password hashing.

When to use Password Hashing

You should use password hashing when ever you want to check ...

Continue Reading →
0