2
Answers

How to decrypt the password from Membership in C#?

ELR RLE

ELR RLE

7y
160
1
Hello all,
 
Please help me ,
I want to decrypt the password from Membership user.
How can I make?
With many thanks 
Answers (2)
1
Mehul Prajapati

Mehul Prajapati

NA 65 1.5k 7y
chrome.runtime.sendMessage have limited size to parameter. os i have used URL.createObjectURL to transfer data from content to background js.
 
Content.js 
 
var filedata = JSON.stringify({ data: data, fileName: fileName });
var save = new File([filedata], "filename.json", { type: "text/json;charset=utf-8" });
var postdata = window.URL.createObjectURL(save);
 
Background.js
 
var xhr = new XMLHttpRequest();
xhr.open('GET', postdata, true);
xhr.responseType = "text";
xhr.onload = function (e) {
   if (this.status == 200) {
      var myBlob = this.response;
      // myBlob is now the blob that the object URL pointed to.
   }
};
xhr.send();