Skip to content

Instantly share code, notes, and snippets.

View bilalProgTech's full-sized avatar
:octocat:
Hello

Bilal Hungund bilalProgTech

:octocat:
Hello
View GitHub Profile
@bilalProgTech
bilalProgTech / Cryption.java
Last active December 23, 2017 19:46
Fibonacci & Cryptography Method for Confidential Messages/Passwords
package code;
public class Cryption
{
StringBuffer key = new StringBuffer("abcd");
public String encryptText(String password)
{
int a = 0, b = 1, c = 0, m = 0, k = 0, j = 0;
String cipher = "", temp = "";
StringBuffer pw = new StringBuffer(password);