-
Notifications
You must be signed in to change notification settings - Fork 238
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RSA Extension #1699
base: master
Are you sure you want to change the base?
RSA Extension #1699
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
// Name: RSA | ||
// ID: themadpunter-rsa | ||
// Description: Encrypt text and files using RSA, the world's best asymmetric encryption algorithm. | ||
// By: Themadpunter <https://scratch.mit.edu/users/The_Mad_Punter/> | ||
// License: MIT | ||
|
||
(function(Scratch) { | ||
'use strict'; | ||
|
||
// Load the JSEncrypt library from a CDN | ||
const script = document.createElement('script'); | ||
script.src = 'https://cdn.jsdelivr.net/npm/jsencrypt/bin/jsencrypt.min.js'; | ||
document.head.appendChild(script); | ||
Comment on lines
+10
to
+13
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You shouldnt be fetching a file url like that as:
You should use a data.uri instead. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ok being real here, jsdelivr isnt going down any time soon, and no they should find a way to import the library without using a script tag. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. the desktop app still needs to work without internet (this is why the extension library there can only update when the app does, because it's stored offline). There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. maybe yeah but that does bring the question is it allowed because stuff like a script tag isnt allowed and they do similar things |
||
|
||
class RSAExtension { | ||
getInfo() { | ||
return { | ||
id: 'themadpunter_rsa', | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
name: 'TurboRSA', | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this name should be the same as the one listed on the gallery which you put as |
||
color1: '#FF0000', // Primary color (red) | ||
color2: '#CC0000', // Secondary color (darker red) | ||
blocks: [ | ||
{ | ||
opcode: 'generateKeys', | ||
blockType: Scratch.BlockType.REPORTER, | ||
text: 'Generate RSA keys', | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nitpick: please make the block titles lowercase so "generate RSA keys" as currently it does not follow scratch's conventions, also blocks are not sentence's so yeah |
||
arguments: {} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. unnecessary key |
||
}, | ||
{ | ||
opcode: 'encrypt', | ||
blockType: Scratch.BlockType.REPORTER, | ||
text: 'Encrypt [TEXT] with public key [KEY]', | ||
arguments: { | ||
TEXT: { | ||
type: Scratch.ArgumentType.STRING, | ||
defaultValue: 'Hello, world!' | ||
}, | ||
KEY: { | ||
type: Scratch.ArgumentType.STRING, | ||
defaultValue: '' | ||
} | ||
} | ||
}, | ||
{ | ||
opcode: 'decrypt', | ||
blockType: Scratch.BlockType.REPORTER, | ||
text: 'Decrypt [TEXT] with private key [KEY]', | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. same here as the other name comment |
||
arguments: { | ||
TEXT: { | ||
type: Scratch.ArgumentType.STRING, | ||
defaultValue: '' | ||
}, | ||
KEY: { | ||
type: Scratch.ArgumentType.STRING, | ||
defaultValue: '' | ||
} | ||
} | ||
} | ||
] | ||
}; | ||
} | ||
|
||
generateKeys() { | ||
const crypt = new JSEncrypt({ default_key_size: 1024 }); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nitpick: this could be customizable |
||
const publicKey = crypt.getPublicKeyB64(); | ||
const privateKey = crypt.getPrivateKeyB64(); | ||
return JSON.stringify({ publicKey, privateKey }); | ||
} | ||
|
||
encrypt(args) { | ||
const crypt = new JSEncrypt(); | ||
crypt.setPublicKey(args.KEY); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. please cast your values |
||
const encrypted = crypt.encrypt(args.TEXT); | ||
return encrypted ? encrypted : 'Encryption failed'; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. instead of returning text which could be the same as the actual output value you should just return an empty string |
||
} | ||
|
||
decrypt(args) { | ||
const crypt = new JSEncrypt(); | ||
crypt.setPrivateKey(args.KEY); | ||
const decrypted = crypt.decrypt(args.TEXT); | ||
return decrypted ? decrypted : 'Decryption failed'; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. same goes here for the returning an empty string |
||
} | ||
} | ||
|
||
// Wait for the script to load before registering the extension | ||
script.onload = () => { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. after doing what the other reviews suggests (removing the script tag) just remove this |
||
Scratch.extensions.register(new RSAExtension()); | ||
}; | ||
})(Scratch); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this id should be the same as the extension ID