Cryptography | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Cryptography

how i can encode my data with personal encoding format like base64 encoding, i have a online android app and i going to make personal encoding format for send to / get from database, what am i do for make it ???

11th Aug 2017, 4:42 AM
Mohammad Zarchi
Mohammad Zarchi - avatar
7 Answers
+ 2
Java & php ...
11th Aug 2017, 3:56 PM
Mohammad Zarchi
Mohammad Zarchi - avatar
+ 2
You're wanting to create your own encryption algorithm?
11th Aug 2017, 4:11 PM
Corey
Corey - avatar
+ 1
What language are you using?
11th Aug 2017, 12:31 PM
Corey
Corey - avatar
+ 1
Encoding in Java: import java.util.Base64; byte[] encodedBytes = Base64.getEncoder().encode("data_to_encode".getBytes()); Decoding in PHP: base64_decode("encoded_string");
11th Aug 2017, 4:08 PM
Corey
Corey - avatar
+ 1
No Corey, i going to make a new encode format like base64 not use base64 ...
11th Aug 2017, 4:10 PM
Mohammad Zarchi
Mohammad Zarchi - avatar
+ 1
Yes ...
11th Aug 2017, 4:13 PM
Mohammad Zarchi
Mohammad Zarchi - avatar
- 1
i made one Go to http://enc.shahriyar.gq
1st Dec 2018, 5:02 AM
Md Shahriyar Alam
Md Shahriyar Alam - avatar