Camel.Rider

Results 1 issues of Camel.Rider

iex(4)> System.otp_release() "24" iex(5)> clear_text = "my-clear-text" "my-clear-text" iex(6)> auth_data = "my-auth-data" "my-auth-data" iex(7)> {:ok, aes_256_key} = ExCrypto.generate_aes_key(:aes_256, :bytes) {:ok, } iex(8)> {:ok, {_ad, {init_vec, cipher_text, cipher_tag}}} = **ExCrypto.encrypt(aes_256_key, auth_data,...