import javax.crypto.Cipher; import javax.crypto.spec.GCMParameterSpec; import javax.crypto.spec.SecretKeySpec; import java.util.Base64; public class GcmDecryptor { private static final int GCM_IV_LENGTH = 12; private static final int GCM_TAG_LENGTH = 16; private static final String ENCRYPTION_ALGORITHM = "AES/GCM/NoPadding"; public static String decryptGcmBase64(String encrypted, String key) throws Exception { // Decode the encrypted data from Base64 format byte[] ivAndCipherText = Base64.getDecoder().decode(encrypted); // Separate the IV and cipher text from the combined array byte[] iv = new byte[GCM_IV_LENGTH]; byte[] cipherText = new byte[ivAndCipherText.length - GCM_IV_LENGTH]; System.arraycopy(ivAndCipherText, 0, iv, 0, GCM_IV_LENGTH); System.arraycopy(ivAndCipherText, GCM_IV_LENGTH, cipherText, 0, cipherText.length); // Create a secret key from the provided key SecretKeySpec keySpec = new SecretKeySpec(key.getBytes(), "AES"); // Initialize the cipher with the key and IV Cipher cipher = Cipher.getInstance(ENCRYPTION_ALGORITHM); GCMParameterSpec gcmSpec = new GCMParameterSpec(GCM_TAG_LENGTH * 8, iv); cipher.init(Cipher.DECRYPT_MODE, keySpec, gcmSpec); // Decrypt the data byte[] plainText = cipher.doFinal(cipherText); // Convert the decrypted data to a string and return it return new String(plainText); } public static void main(String[] args) throws Exception { System.out.println("AES GCM in Java"); // ### security warning: never use hardcoded keys in source ### String encrypted = "zd6xkaukIWJbLvyUtgZFQLPKK+adUba1ijiDYRvAOqlnLCsrArUQwUk="; String key = "ThisIsASecretKey"; String decrypted = GcmDecryptor.decryptGcmBase64(encrypted, key); System.out.println(decrypted); } }
Write, Run & Share PHP code online using OneCompiler's PHP online compiler for free. It's one of the robust, feature-rich online compilers for PHP language, running on the latest version 7. Getting started with the OneCompiler's PHP compiler is simple and pretty fast. The editor shows sample boilerplate code when you choose language as PHP
and start coding.
OneCompiler's PHP online editor supports stdin and users can give inputs to programs using the STDIN textbox under the I/O tab. Following is a sample PHP program which takes name as input and prints hello message with your name.
<?php
fscanf(STDIN, "%s\n", $name);
echo "Hello ".$name.".\n";
?>
PHP(Hypertext Preprocessor) is widely used server sripting language by Rasmus Lerdorf in the year 1994.
In PHP, there is no need to explicitly declare variables to reserve memory space. When you assign a value to a variable, declaration happens automatically. Variables are case-sensitive in PHP.
$variable_name = value;
If, If-else, Nested-Ifs are used when you want to perform a certain set of operations based on conditional expressions.
if(conditional-expression){
//code
}
if(conditional-expression){
//code if condition is true
} else {
//code if condition is false
}
if(condition-expression1) {
//code if above condition is true
} elseif(condition-expression2){
//code if above condition is true
}
elseif(condition-expression3) {
//code if above condition is true
}
...
else {
//code if all the conditions are false
}
Switch is used to execute one set of statement from multiple conditions.
switch(conditional-expression) {
case value1:
// code if the above value is matched
break; // optional
case value2:
// code if the above value is matched
break; // optional
...
default:
// code to be executed when all the above cases are not matched;
}
For loop is used to iterate a set of statements based on a condition.
for(Initialization; Condition; Increment/decrement){
// code
}
// you can use any of the below syntax
foreach ($array as $element-value) {
//code
}
foreach ($array as $key => $element-value) {
//code
}
While is also used to iterate a set of statements based on a condition. Usually while is preferred when number of iterations are not known in advance.
while(condition) {
// code
}
Do-while is also used to iterate a set of statements based on a condition. It is mostly used when you need to execute the statements atleast once.
do {
// code
} while (condition);
Function is a sub-routine which contains set of statements. Usually functions are written when multiple calls are required to same set of statements which increases re-usuability and modularity.
function function_name(parameters) {
//code
}
function_name (parameters)