Skip to content

Instantly share code, notes, and snippets.

@juucustodio
Created October 8, 2018 02:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save juucustodio/480ea1ca4b3262ea06f7a55d50a74bdb to your computer and use it in GitHub Desktop.
Save juucustodio/480ea1ca4b3262ea06f7a55d50a74bdb to your computer and use it in GitHub Desktop.
Example how to implement a token generator in Xamarin.Forms Applications. - http://julianocustodio.com/token
public MainPage()
{
//Identificador
string Id = "100";
InitializeComponent();
BindingContext = this;
secretKey = Encoding.UTF8.GetBytes(Id);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment