fromCrypt function

CryptData fromCrypt(
  1. String input
)

Decodes a string to an hash algorithm config following PHC string format.

Implementation

CryptData fromCrypt(String input) {
  return crypt.decoder.convert(input);
}