Jump to content

Ams Ile Sqlite 3 Kullanımı


galetis
 Share

  

69 members have voted

  1. 1. Videolar ve kodlar sürdürülüp T-Sql komutları başlasınmı ?

    • Evet
      64
    • Hayır
      5


Recommended Posts

  • Editor

Tabi her şifrenin gizliliği ayrı olur.Metin değişkeninde topu ben değilde başkası atar yani şifre değişik olur.Kısacası değişecek alan sadece metin değişkeni.

Link to comment
Share on other sites

  • Replies 153
  • Created
  • Last Reply

Top Posters In This Topic

fonksiyonla kolayca hallledebilirsin:

 

Global Functions:

gizlikey = "oljdfu32rf^%+^Gqrsdegwk0*-31q4t"; // burdaki şifreyi siz belirleyeceksiniz
function sifrele(metin)
	if metin ~= "" and metin ~= nil then
	gizlenmis = Crypto.BlowfishEncryptString(metin, gizlikey, 0);
	return gizlenmis;
	else
	Dialog.Message("Hata", "Gönderdiğiniz metin boş!");
	end
end

function sifreCoz(metin)
	if metin ~= "" and metin ~= nil then
	normal = Crypto.BlowfishDecryptString(metin, gizlikey);
	return normal;
	else
	Dialog.Message("Hata", "Gönderdiğiniz metin boş!");
	end
end

Kullanımı:

Dialog.Message("", sifrele("lorem ipsum dolor sit amet")) // sifreleme
Dialog.Message("", sifreCoz("ccKQK8W7gBg0GBhOd9uvMaXbqEMyi3kREVtUe/IfyR4=")) // sifreyi coz
Link to comment
Share on other sites

  • 1 ay sonra...

@galetis Videolar gayet başarılı. Sayende güzel bişeyde yaptım. Fakat bu .db dosyasını bu işten anlayan biri açabilir yani bilgiler gözükebilir bunu nasıl saklıcaz orasını anlamadım. Bende şifrelerimi saklıyabilicek bişey yaptım.

 

J2EAEZ2.png

 

Veritabanını oluştururken navicat'ın advanced sekmesinde encrypted seçeneğini işaretleyip parolanı belirtirsen veritabanına şifresiz bağlantı yapılamıyacaktır.

Link to comment
Share on other sites

  • 2 years yıl...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

  • Recently Browsing   0 members

    No registered users viewing this page.


×
×
  • Create New...