Saved Bookmarks
| 1. |
What Is The Use Of Crypto Module In Elixir? |
|
Answer» In Elixir, the crypto module is USED to decrypt our PROJECT APPLICATIONS. It uses hashing function and digital signature. IO.puts(Base.encode16(:crypto.hash(:sha256, "Elixir"))) In Elixir, the crypto module is used to decrypt our project applications. It uses hashing function and digital signature. Example: IO.puts(Base.encode16(:crypto.hash(:sha256, "Elixir"))) |
|