S
S
siroper2022-01-25 18:56:53
JavaScript
siroper, 2022-01-25 18:56:53

How to find out what a string is encoded with?

Hello. There is a need to parse the picodi_com project and everything would be fine, but the codes themselves are encoded when opened :) I can’t understand the decryption logic, how their codes are encrypted.

For example input value="aCNVNGI4Tk9WSU5LSU1mbnYvRA==", and visually - NOVINKI
input value="aCNVNGI4cGljb2RpY29tMjBNZm52L0Q=" visually - picodicom20 Can

you please tell me if anyone has any thoughts?

Answer the question

In order to leave comments, you need to log in

2 answer(s)
R
Rsa97, 2022-01-25
@siroper

console.log(atob('aCNVNGI4Tk9WSU5LSU1mbnYvRA=='));
// "h#U4b8NOVINKIMfnv/D"

console.log(atob('aCNVNGI4cGljb2RpY29tMjBNZm52L0Q='));
/// "h#U4b8picodicom20Mfnv/D"

G
German Zuiakov, 2022-01-25
@HermanZuiakov

Base64

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question