【☠️CRYPTOGRAPHY ALGORITHMS AND THEIR USES ☢️YOU CAN MADE A OWN CRYPTER ☢️☠️】

SudoDragon

Infinity Member
Joined
September 6, 2025
Messages
1,552
Reaction score
32,662
Points
113
  • Thread Author
  • #1
To see this hidden content, you need to "Reply & React" with one of the following reactions: Like, Love, Haha, Wow
Code:

Code:
Code:
[font=Courier New,Courier,monospace]import java.io.UnsupportedEncodingException;
import javax.crypto.Cipher;
import javax.crypto.IllegalBlockSizeException;
import javax.crypto.KeyGenerator;
import javax.crypto.SecretKey;

DesEncrypter(SecretKey key) { try { eCipher = Cipher.getInstance("DES");
dCipher = Cipher.getInstance("DES");
eCipher.init(Cipher.ENCRYPT_MODE, key);
dCipher.init(Cipher.DECRYPT_MODE, key); } catch (javax.crypto.NoSuchPaddingException e)
{
} catch (java.security.NoSuchAlgorithmException e)
{
} catch (java.security.InvalidKeyException e)
{
} } public String encrypt(String str) { try { byte[] utf8 = str.getBytes("UTF8");
// Şifreleme byte[] enc = eCipher.doFinal(utf8);
// Bytes dizisini BASE64 ile karakter dizisine çevir return new sun.misc.BASE64Encoder().encode(enc); } catch (javax.crypto.BadPaddingException e)
{
} catch (IllegalBlockSizeException e)
{
} catch (UnsupportedEncodingException e)
{
} catch (java.io.IOException e)
{
} return null;
}
public String decrypt(String str)
{ try { byte[] dec = new sun.misc.BASE64Decoder().decodeBuffer(str);
// Şifreyi çözme byte[] utf8 = dCipher.doFinal(dec);
return new String(utf8, "UTF8");
} catch (javax.crypto.BadPaddingException e)
{
} catch (IllegalBlockSizeException e)
{
} catch (UnsupportedEncodingException e)
{
} catch (java.io.IOException e)
{
} return null; } public static **** main(String[] args) { try
{ // Geçici bir anahtar oluştur SecretKey key = KeyGenerator.getInstance("DES").generateKey();
// Şifreleyecek objeyi yarat DesEncrypter encrypter = new DesEncrypter(key);
// Şifrele String encrypted = encrypter.encrypt("E-Bergi Mart sayısı"); System.out.println(encrypted);
// Şifreyi çöz String decrypted = encrypter.decrypt(encrypted); System.out.println(decrypted); } catch (Exception e)
{
}
}
}[/font]
 
Reactions: asfcavfadaad, FUD Seller, miriamiria333 and 2 others

Donmisiu666

Advanced Member
Joined
September 26, 2025
Messages
146
Reaction score
0
Points
16
  • #2
Hi
 
I

izoo0

Member
Joined
December 25, 2025
Messages
34
Reaction score
0
Points
6
  • #3
ni
 
M

miriamiria333

Member
Joined
January 5, 2026
Messages
12
Reaction score
0
Points
1
  • #4
hi
 
F

freeedu

New Member
Joined
February 19, 2026
Messages
1
Reaction score
0
Points
1
  • #5
Wow
 

FUD Seller

Premium Member
Joined
April 6, 2026
Messages
81
Reaction score
4
Points
8
  • #6
..
 

asfcavfadaad

Member
Joined
May 23, 2026
Messages
42
Reaction score
6
Points
8
  • #7
d
 

Similar threads

  • Tags
    algorithms crypter_tool cryptography encryption security