+ 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 ???
7 Respostas
+ 2
Java & php ...
+ 2
You're wanting to create your own encryption algorithm?
+ 1
What language are you using?
+ 1
Encoding in Java:
import java.util.Base64;
byte[] encodedBytes = Base64.getEncoder().encode("data_to_encode".getBytes());
Decoding in PHP:
base64_decode("encoded_string");
+ 1
No Corey, i going to make a new encode format like base64 not use base64 ...
+ 1
Yes ...
- 1
i made one Go to http://enc.shahriyar.gq