Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
encrypt
- Page 1
encrypt by Python
Programming
Software Development
2 Years Ago
by mohamed_191
encrypt
Encrypt/Decrypt a string
Programming
Software Development
17 Years Ago
by Koldsoul
… std; char choice; int main() { //Ask user to
encrypt
or decrypt cout << "Would you like to… cout << "Enter the text you wish to
encrypt
." << endl; cin >> text;…
Encrypt/decrypt a document with multiple RSACryptoServiceProvider keys
Programming
Software Development
14 Years Ago
by vihrao
…; </root> I am able to successfully
encrypt
two elements with two different keys. However the problem…to retrieve the decryption key." However if I
Encrypt
both elements with same publicKey then Decrypt works. …This means If I
encrypt
elements of a document with single key Decrypt works…
Re: Encrypt/Decrypt a string
Programming
Software Development
17 Years Ago
by Koldsoul
…nothing afterwards and is compiling with no errors. //
Encrypt
the text string
encrypt
(string text, string message) { int i; string… cout << "Enter the text you wish to
encrypt
." << endl; cin >> text;…
Re: Encrypt/Decrypt a string
Programming
Software Development
17 Years Ago
by Narue
… program is horribly broken. Here are some examples: >string
encrypt
(string text, string message); >string decrypt(string text, string… an unqualified name that's in the std namespace. >
encrypt
; When calling a function, you must provide the argument list…
Encrypt / Decrypt String
Programming
Software Development
13 Years Ago
by nsyncpilu
…Entered: " + input); encryptionBytes =
encrypt
(input); System.out.println( "Recovered:…decrypt(encryptionBytes)); } private static byte[]
encrypt
(String input) throws InvalidKeyException, BadPaddingException, …
Encrypt a string(sentence) using ceasar cipher
Programming
Software Development
13 Years Ago
by tom12
… me, as i'm new to programming. i need to
encrypt
a full sentence. with my program above it will…
encrypt
but as soon as it reaches a space it will … one word and not the full sentence. how can i
encrypt
the full sentence. thanks guys hope you can help. im…
Re: encrypt a file (user enters name), saving file as encrypted to decrypt later
Programming
Software Development
16 Years Ago
by VernonDozier
Okay, so you have functions that
encrypt
and decrypt. Both of these functions take a …'t too sure about that. So it seems that to
encrypt
, three things must be specified. One, a filename (again…strings, but C-strings could be used instead): [code] void
encrypt
(string plaintext, string password, string filename) // encrypts and stores…
Re: Encrypt / Decrypt String
Programming
Software Development
13 Years Ago
by nsyncpilu
…Entered: " + input); encryptionBytes =
encrypt
(input); System.out.println( "Recovered:…decrypt(encryptionBytes)); } private static byte[]
encrypt
(String input) throws InvalidKeyException, BadPaddingException, …
Re: Encrypt and decrypt a text....
Programming
Software Development
12 Years Ago
by riahc3
…Decrypted is: " + dresult); } public static String
encrypt
(String dstring) { String result=""; String skey="… javax.crypto.Cipher.doFinal(DashoA13*..) at EncryptDerypt.EncryptDecrypt.
encrypt
(EncryptDecrypt.java:45) at EncryptDerypt.EncryptDecrypt.main(EncryptDecrypt.…
Re: encrypt datagridview selected column
Programming
Software Development
10 Years Ago
by Santanu.Das
…mean by this line > i want to do is
encrypt
the 3 column in the datagridview since it is a… Here is no way for which column you tried to
encrypt
or which is the password column you thought to…simple encription method though there are too many process to
encrypt
. Imports System Imports System.IO Imports System.Data Imports System…
Encrypt File using User Supplied Password
Programming
Software Development
18 Years Ago
by hkinser
… one file with the user password being the key to
encrypt
it all. Here is the login code I'm using…) ' Obtain a BinaryWriter object. Dim aBinaryWriter As New BinaryWriter(aFileStream) '
Encrypt
the new password and binary write to a binary file…
encrypt and decrypt query string
Programming
Software Development
17 Years Ago
by hanusoftware
This code has been used to
encrypt
and decrypt query string .No matter what the lenght of …the url is ,this code will
encrypt
the key and the value the query string into 25…
Re: encrypt and decrypt query string
Programming
Software Development
17 Years Ago
by arjunsasidharan
[QUOTE=hanusoftware;382709]This code has been used to
encrypt
and decrypt query string .No matter what the lenght of …the url is ,this code will
encrypt
the key and the value the query string into 25…
encrypt a file (user enters name), saving file as encrypted to decrypt later
Programming
Software Development
16 Years Ago
by trixymix31
…, Thank you for helping with this. I basically have to
encrypt
a file in where the user enters the file name… the files working. Any criticism/help is appreciated. [code] void
encrypt
(int choice) { //declare variables// char pw[20], name[20]; int…
Re: encrypt a file (user enters name), saving file as encrypted to decrypt later
Programming
Software Development
16 Years Ago
by trixymix31
… with the user-defined filename? It was not mentioned to
encrypt
the filename so I do not believe that would be… the choice the user entered from the main function: 1.
encrypt
2. decrypt 3. exit I'm back & forth with…
Re: encrypt a file (user enters name), saving file as encrypted to decrypt later
Programming
Software Development
16 Years Ago
by VernonDozier
…; }[/code] So you could enter something like: [code] c:\somedirectory\
encrypt
.txt [/code] and that'll be the name of the… has spaces. [QUOTE=trixymix31;846929] It was not mentioned to
encrypt
the filename so I do not believe that would be…
Encrypt php code
Programming
Web Development
15 Years Ago
by innocent.boys
is there anyway to
encrypt
php code..???? or
encrypt
php file
Encrypt and Decrypt
Programming
Software Development
17 Years Ago
by Jx_Man
This is code for
Encrypt
and Decrypt. this a simple logic of encryption. Please leave … or feedback if this code helps you. Thanks. Jery. :) the
encrypt
function place in a module. This Code needed : 1 Module…
encrypt and secrypt session variable
Programming
Web Development
13 Years Ago
by rse
Hello, How can I
encrypt
and decrypt a session variable using salt, what do I … unknow function mcrypt_ecrypt. Any ideas to help. [code=php] function
encrypt
($text, $SALT=null) { $SALT=SECURE_KEY; return trim(base64_encode(mcrypt_encrypt(MCRYPT_RIJNDAEL_256…
Re: Encrypt a string(sentence) using ceasar cipher
Programming
Software Development
13 Years Ago
by deceptikon
So is the problem solved, or did you want to preserve whitespace and only
encrypt
non-whitespace characters?
Re: Encrypt a string(sentence) using ceasar cipher
Programming
Software Development
13 Years Ago
by tom12
[QUOTE=deceptikon;1763853]So is the problem solved, or did you want to preserve whitespace and only
encrypt
non-whitespace characters?[/QUOTE] It's all good Thanks.
encrypt php
Programming
Web Development
11 Years Ago
by davy_yg
Hallo, I wonder how to
encrypt
and decrypt php codes. I found an encrypted php code but do not know how to decrypt it. Anyone knows how to
encrypt
and decrypt php codes ? Thanks before. Davy
Encrypt $_GET parameter PHP
Programming
Web Development
9 Years Ago
by Stefce
I have two questions does its possible to
encrypt
get parameter same like the passwords are? If NO whats the best method to do it i have simple parameter `articleID=1`, i want to
encrypt
the number which user is not able to see it or hack it so should look something like this `articleID=jt8asd9HG43u52Jh1jk94X`
Re: Encrypt File using User Supplied Password
Programming
Software Development
18 Years Ago
by jbennet
…=#008000]'convert to number w/ Asc, then use Xor to
encrypt
[/COLOR] Print(1, Asc(letter) [COLOR=#0000ff]Xor[/COLOR] Code…
Re: Encrypt network
Hardware and Software
Microsoft Windows
15 Years Ago
by caperjack
[QUOTE=desiguru;1077310]How do you
encrypt
wireless network on your computer?[/QUOTE] [url]http://www.google.ca/search?hl=en&client=firefox-a&rls=org.mozilla%3Aen-US%3Aofficial&hs=9yS&q=How+do+you+
encrypt
+wireless+network+&btnG=Search&meta=&aq=&oq=caveat[/url]
Re: Encrypt/Decrypt Vb.net
Programming
Software Development
13 Years Ago
by codeorder
… = "¿s¢çc‹i˜Ö´åÄÚKÍìæ¯~4Ûÿ5ÑûÏÉí³èô§ŠÀÙ9ÒÓ?þ.äƒ%*𾆱HI2@æŒ," '//
encrypt
. Private Sub Button1_Click(sender As System.Object, e As System… your Arrays, depending on which Array to use, if to
encrypt
or decrypt. If a letter is the same letter as…
Re: Encrypt data to save to db
Programming
Web Development
12 Years Ago
by xxmp
I did the hash for the password but now i want to
encrypt
some informations that i put in cookie. So i need two way encryption so i can
encrypt
and decrypt it Thank you very much i will check the links
encrypt function
Programming
Web Development
19 Years Ago
by anuradhu
could someone please let me know the encryption level of the
encrypt
function of coldfusion.... as far as i know it supports onjly 32 bit encryption...are there any chances of it supporting any other encryption levels.... has anything happenend in coldfusion7?
encrypt text
Programming
Software Development
18 Years Ago
by some one
hi please i need your help i need an idea of how to
encrypt
text in file text using c++ Thanks alot
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC