Click here to Skip to main content
15,896,207 members
Home / Discussions / C#
   

C#

 
GeneralRe: Not understanding use of return statement in c#. Pin
Pete O'Hanlon15-Sep-18 6:24
mvePete O'Hanlon15-Sep-18 6:24 
AnswerRe: Not understanding use of return statement in c#. Pin
Pete O'Hanlon11-Sep-18 6:54
mvePete O'Hanlon11-Sep-18 6:54 
GeneralRe: Not understanding use of return statement in c#. Pin
OriginalGriff11-Sep-18 8:15
mveOriginalGriff11-Sep-18 8:15 
GeneralRe: Not understanding use of return statement in c#. Pin
Pete O'Hanlon11-Sep-18 8:46
mvePete O'Hanlon11-Sep-18 8:46 
Questiondesign website Could not find schema information for the element 'http://schemas.microsoft.com/.NetConfiguration/v2.0:configuration' ? Pin
Member 24584679-Sep-18 16:20
Member 24584679-Sep-18 16:20 
AnswerRe: design website Could not find schema information for the element 'http://schemas.microsoft.com/.NetConfiguration/v2.0:configuration' ? Pin
Matias Lopez12-Sep-18 10:31
Matias Lopez12-Sep-18 10:31 
QuestionEncrypt string to 10 random characters Pin
Mohammad Azeem9-Sep-18 10:13
Mohammad Azeem9-Sep-18 10:13 
AnswerRe: Encrypt string to 10 random characters Pin
Dave Kreskowiak9-Sep-18 10:59
mveDave Kreskowiak9-Sep-18 10:59 
Can't be done.

Think about this. Encryption means that not a single bit of data can be lost. Every bit of it must be represented. Encryption is lossless.

Now, you said you want to pack any string of any length into no more than 80 bits. How on earth are you going to pack a "string of any length", lets just say a 3MB string, into 80 bits?

Encryption is NOT compression.

You may be able to cryptographic HASH a string into 80 bits, though that's going to limit your possible hash values. With such few bits (80 of them), the chance of a collision (2 strings coming up with the same hash value) is higher than normal. There is no way to reverse the process and get the original string back. A cryptographic hash cannot be reversed.

AnswerRe: Encrypt string to 10 random characters Pin
Eddy Vluggen9-Sep-18 11:34
professionalEddy Vluggen9-Sep-18 11:34 
AnswerRe: Encrypt string to 10 random characters Pin
OriginalGriff9-Sep-18 19:38
mveOriginalGriff9-Sep-18 19:38 
GeneralRe: Encrypt string to 10 random characters Pin
Mohammad Azeem9-Sep-18 20:10
Mohammad Azeem9-Sep-18 20:10 
GeneralRe: Encrypt string to 10 random characters Pin
OriginalGriff9-Sep-18 20:27
mveOriginalGriff9-Sep-18 20:27 
GeneralRe: Encrypt string to 10 random characters Pin
Mohammad Azeem9-Sep-18 20:34
Mohammad Azeem9-Sep-18 20:34 
GeneralRe: Encrypt string to 10 random characters Pin
OriginalGriff9-Sep-18 21:14
mveOriginalGriff9-Sep-18 21:14 
QuestionDrag and drop user-control from stack-panel to Windows Explore(or Desktop) for saving it to PNG in C# wpf Pin
Member 133785039-Sep-18 0:09
Member 133785039-Sep-18 0:09 
AnswerRe: Drag and drop user-control from stack-panel to Windows Explore(or Desktop) for saving it to PNG in C# wpf Pin
Eddy Vluggen9-Sep-18 0:22
professionalEddy Vluggen9-Sep-18 0:22 
GeneralRe: Drag and drop user-control from stack-panel to Windows Explore(or Desktop) for saving it to PNG in C# wpf Pin
Member 133785039-Sep-18 1:13
Member 133785039-Sep-18 1:13 
GeneralRe: Drag and drop user-control from stack-panel to Windows Explore(or Desktop) for saving it to PNG in C# wpf Pin
Eddy Vluggen9-Sep-18 2:10
professionalEddy Vluggen9-Sep-18 2:10 
GeneralRe: Drag and drop user-control from stack-panel to Windows Explore(or Desktop) for saving it to PNG in C# wpf Pin
Member 133785039-Sep-18 8:09
Member 133785039-Sep-18 8:09 
GeneralRe: Drag and drop user-control from stack-panel to Windows Explore(or Desktop) for saving it to PNG in C# wpf Pin
Eddy Vluggen9-Sep-18 8:20
professionalEddy Vluggen9-Sep-18 8:20 
QuestionForms opening other forms Pin
Member 112336117-Sep-18 20:33
Member 112336117-Sep-18 20:33 
AnswerRe: Forms opening other forms Pin
OriginalGriff7-Sep-18 21:20
mveOriginalGriff7-Sep-18 21:20 
GeneralRe: Forms opening other forms Pin
Member 112336118-Sep-18 0:03
Member 112336118-Sep-18 0:03 
GeneralRe: Forms opening other forms Pin
Member 112336118-Sep-18 0:06
Member 112336118-Sep-18 0:06 
GeneralRe: Forms opening other forms Pin
OriginalGriff8-Sep-18 0:07
mveOriginalGriff8-Sep-18 0:07 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.