https://www.google.com/chrome/
https://chrome.google.com/webstore/detail/web-scraper/jnhgnonknehpejjnehehllkliplmbmhn
More tutorials: https://www.webscraper.io/
//The code is based on the code from here: https://stackoverflow.com/a/10177020/1221983 | |
//And adapted for NET 8 and Unity. | |
//Reduced memory consumption. | |
//Added possibility to encrypt byte arrays, not only strings. | |
//You can also attach custom data that will not be encrypted. | |
var password = "nso%dhfkl$siohf"; | |
var str = "This is test string!№;%^#@^&"; |
public static class BigIntegerHelper | |
{ | |
private static readonly BigInteger Ten = new BigInteger(10); | |
public static BigInteger ToBigInteger(this ulong ul) | |
{ | |
return new BigInteger(ul); | |
} | |
public static BigInteger ToBigInteger(this long ul) | |
{ | |
return new BigInteger((ulong) ul); |