Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6963827
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T15:50:43+00:00 2026-05-27T15:50:43+00:00

Hi I want to decrypting my php encrypted string. My code is UsingPHP.java import

  • 0

Hi I want to decrypting my php encrypted string. My code is

UsingPHP.java

import java.io.UnsupportedEncodingException;
import java.util.ArrayList;
import org.apache.http.NameValuePair;
import org.json.JSONArray;
import org.json.JSONObject;
import android.app.Activity;
import android.os.Bundle;
import android.util.Base64;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;

public class UsingPHP extends Activity {
    TextView encrypt_txt1, encrypt_txt2, decrypt_txt1, decrypt_txt2;
    Button decrypt_but;
    String original_value = "";
    String encrypted_value = "";
    byte[] byteArray1;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.decrypt);

        encrypt_txt1 = (TextView) findViewById(R.id.entv1);
        encrypt_txt2 = (TextView) findViewById(R.id.entv2);
        decrypt_txt1 = (TextView) findViewById(R.id.decrytv1);
        decrypt_txt2 = (TextView) findViewById(R.id.decrytv2);
        decrypt_but = (Button) findViewById(R.id.decrybt);

        decrypt_but.setOnClickListener(new View.OnClickListener() {@Override
            public void onClick(View v) {
                try {

                    ArrayList < NameValuePair > postParameters = new ArrayList < NameValuePair > ();
                    String response = null;

                    response = CustomHttpClient.executeHttpPost(
                        "http://10.0.2.2/cyrpt/encrypt.php",
                    postParameters);
                    String res = response.toString();
                    System.out.println("HTTP Response comes here.......");
                    System.out.println(res);

                    JSONArray jArray = new JSONArray(res);
                    System.out.println("JSON Array created.....");

                    JSONObject json_data = null;
                    System.out.println("JSON data created......");
                    for (int i = 0; i < jArray.length(); i++) {
                        System.out.println("values fetched from the database.....");
                        json_data = jArray.getJSONObject(i);
                        original_value = json_data.getString("value");
                        encrypted_value = json_data.getString("encryptedvalue");
                        encrypt_txt2.setText(encrypted_value);
                        System.out.println(original_value);
                        System.out.println(encrypted_value);

                    }

                    System.out.println("Decrypt button has been clicked");
                    System.out.println("My encryption string is--->" + encrypted_value);
                    int encrypt_len = encrypted_value.length();
                    System.out.println(encrypt_len);

                    try {
                        System.out.println("Encrypted values going to decrrypted......");
                        byteArray1 = Base64.decode(encrypted_value, encrypt_len);
                        String decrypt = new String(byteArray1, "UTF-8");

                        System.out.println("Values decrypted-->" + decrypt);
                        decrypt_txt2.setText(decrypt);
                    } catch (UnsupportedEncodingException e) {
                        e.printStackTrace();
                    }
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
        });
    }
} 

encrypt.php

<?php
require_once("connection.php");
$value = 'malavika';
function encode5t($value1)
{
    for ($i = 0; $i < 3; $i++) {
        $value1 = strrev(base64_encode($value1));
    }

    return $value1;
}

$myvalue = encode5t($value);

$mydata = mysql_query("SELECT * FROM crypt");
while ($row = mysql_fetch_assoc($mydata))
    $sam = $row['value'];
if ($sam != 'malavika')
    $myinsert = mysql_query("insert into crypt values('" . $value . "','" . $myvalue . "')") or die(mysql_error());
$data = mysql_query("SELECT * FROM crypt");

while ($row = mysql_fetch_assoc($data))
    $output[] = $row;
print(json_encode($output));
?>

Now I want to decrypt my encrypted value in android. But I got this following warning:

  12-23 10:27:19.343: WARN/System.err(609): java.lang.IllegalArgumentException: bad base-64
  12-23 10:27:19.353: WARN/System.err(609):     at android.util.Base64.decode(Base64.java:161)
  12-23 10:27:19.353: WARN/System.err(609):     at android.util.Base64.decode(Base64.java:136)
  12-23 10:27:19.363: WARN/System.err(609):     at android.util.Base64.decode(Base64.java:118)
  12-23 10:27:19.363: WARN/System.err(609):     at com.my.databaseconnection.UsingPHP$1.onClick(UsingPHP.java:76)
  12-23 10:27:19.363: WARN/System.err(609):     at android.view.View.performClick(View.java:2485)
  12-23 10:27:19.363: WARN/System.err(609):     at  android.view.View$PerformClick.run(View.java:9080)
 12-23 10:27:19.363: WARN/System.err(609):     at android.os.Handler.handleCallback(Handler.java:587)
 12-23 10:27:19.373: WARN/System.err(609):     at android.os.Handler.dispatchMessage(Handler.java:92)
 12-23 10:27:19.373: WARN/System.err(609):     at android.os.Looper.loop(Looper.java:123)
 12-23 10:27:19.373: WARN/System.err(609):     at android.app.ActivityThread.main(ActivityThread.java:3647)
 12-23 10:27:19.383: WARN/System.err(609):     at java.lang.reflect.Method.invokeNative(Native Method)
 12-23 10:27:19.383: WARN/System.err(609):     at java.lang.reflect.Method.invoke(Method.java:507)
 12-23 10:27:19.383: WARN/System.err(609):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:839)
 12-23 10:27:19.383: WARN/System.err(609):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:597)
 12-23 10:27:19.393: WARN/System.err(609):     at dalvik.system.NativeStart.main(Native Method)

How can I do this? Is it possible? Can anybody tell me? Thanks in advance

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T15:50:44+00:00Added an answer on May 27, 2026 at 3:50 pm

    Well there are two things:

    1. Your encode5t function returns invalid base64 data. If I call encode5t("malavika") then the string ==AUVVVeZhlQhdlRspnUsRW is returned which is not valid base64. The = sign is the padding and is only allowed at the end of the base64-string. I guess what you wanted is:

      function encode5t($value1)
      {
          for($i=0;$i<3;$i++)
          {
              $value1=base64_encode(strrev($value1));
          }
      
          return $value1;
      }
      

      That means you just have to first call strrev and then base64_encode. And in the decode-function you first call base64_decode and then strrev (or the Java counter-parts).

    2. As I’ve said in the comment, the second Parameter to Base64.decode in your Java-code is expects flags for the base64-processing and not the length of the string. This might for example turn on the URL_SAFE flag which makes it incompatible with the output of PHP’s base64_encode.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm struggeling with code from this page: http://www.androidsnippets.com/encrypt-decrypt-between-android-and-php I want to send data from
I followed this tutorial and the source code : http://blog.objectgraph.com/index.php/2010/04/20/encrypting-decrypting-base64-encode-decode-in-iphone-objective-c/ And then, I downloaded
`I want to encode my string using .net and pass it to a java
want to know why String behaves like value type while using ==. String s1
Want to code a key pad for an calculator. What I want to make
want to rewrite urls like site.com/software to wp-content/themes/dir/software.php and something is not working.. Here's
I am working in a PHP app we have a particular string that we
I have a concatenated string and I want to pass it as query string.
I have encrypted video file and while decrypting it i have defined Byte byte[]
hello fellow programmers, I followed a tutorial at http://www.androidsnippets.com/encrypt-decrypt-between-android-and-php to send a String encrypted

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.