issue-38 #62

Closed
y wants to merge 48 commits from issue-38 into main
Showing only changes of commit a70ef3371f - Show all commits

View File

@ -206,7 +206,10 @@ export const SignPage = () => {
if (!selectedFile || !encryptionKey) return
setIsLoading(true)
const arrayBuffer = await decrypt(selectedFile, encryptionKey)
const arrayBuffer = await decrypt(
selectedFile,
decodeURIComponent(encryptionKey)
)
if (!arrayBuffer) return
@ -482,11 +485,6 @@ export const SignPage = () => {
placeholder="Select file"
value={selectedFile}
onChange={(value) => setSelectedFile(value)}
InputProps={{
inputProps: {
accept: '.zip'
}
}}
/>
{selectedFile && (