VS 2005 Greedy String Tilting Algorithm?
Apr 16, 2009
I'm currently working on a greedy string tiling algorithm to find out matches between two strings, but there is something wrong with the string,Here is the code am trying:[code].....
View 5 Replies
ADVERTISEMENT
Mar 1, 2009
I have found one sample for encrypting/decrypting text using System.Security.Cryptography library (Encrypt/Decrypt string VB.Net).
But there is an error when I try to compile it:
Quote:
Specified key is not a valid size for this algorithm
Where is an error? And what key I should use? Sample:
Imports System.Security.Cryptography
Private Shared Function Encrypt(ByVal strText As String, ByVal strEncrKey As String) As String
Dim IV() As Byte = {&H12, &H34, &H56, &H78, &H90, &HAB, &HCD, &HEF}
[code]....
View 2 Replies
May 28, 2009
Any example code to encrypt a string using the new ECDSA algorithm?
View 1 Replies
May 26, 2012
I am not sending any sensitive or security information in the query string. I am currently using Base64Encoding along with MD5 Hash. I want to shorten my url as far as possible.
[Code]...
View 2 Replies
Jun 8, 2009
I am trying to implement an Algorithm called "Diamond-Square Algorithm" I am having trouble ending it so that it retiurns the required result. So far I have the folloiwng.
[Code]...
View 3 Replies
Jun 13, 2011
I have 1 string : abc @#ABC.xyz123ZYX
Now I need to encode the string:
The encoding alphabetic characters,
CODE:
With this string, after encoding, the result is: zyx @#ZYX.cba123ABC
About Function Encrypt and Function Decrypt?
View 1 Replies
Jan 17, 2010
I don't understand why the line final.join etc pops up with these errors!! Value of type 'String' cannot be converted to '1-dimensional array of String' And Access of shared member, constant member, enum member or nested type through an instance; qualifying expression will not be evaluated This is my code.
[Code]...
View 6 Replies
Feb 19, 2009
The following is ment to generate the path to a text file and stream the data found there into an array.
Dim y1 As String
Dim y2 As String
Dim y3 As String
[code].....
View 5 Replies
Jun 4, 2009
codes like(x is variable)
dim k as string="5b5" & x & "85"
I want to know how many times "5" appears in k,
View 6 Replies
Jul 30, 2011
The intent of the code is to open an xls file -minimize it , search for keywords . there are columns like test case name ,priority(simple ,medium and high) with associated keywords.If keywords are found, it shld save the test case name - Priority in a text box. When i run this code i am getting err in
[Code]....
View 1 Replies
Mar 30, 2009
My problem seems simple but I can't find an answer for it.I need to be able to pull a phone number (string) from an entire string. example: "My phone number is (xxx) xxx-xxxx, call me as soon as possible."
Its obvious to me that the phone number should be able to change depending on who you are talking too. So the question becomes, how do i search for the phone number's format within the above string?
View 6 Replies
Apr 14, 2010
I'll do my best to explain what the algorithm is supposed to do:There's a class 'Recipe'.ach Recipe can include other Recipes but cannot include itself or any other Recipe that includes it. So, a simple example is we have just two Recipes A & B.A,B,C(1) Recipe C Adds B(2) Recipe B Adds A(3) Recipe attempts to add C, but can't because of the relationship. C- B - A.
View 4 Replies
Sep 8, 2010
I'm Micah. Electrical/Electronic engineering 500 level student. I'm working on my final year project. please i need a code for the implementation of RSA algorithm in VB.NET. your assistance will be appreciated.
View 2 Replies
Dec 26, 2009
is the algorithm for VB editor released anywhere? because i'm trying to create my own editor that gives various options like Linking and self defined array functions (see below) such that one edit can update several others in various places, but i do still wish to have the auto formatting VB editor provides us with.an example of a self defined array function (count):we can transform this:
Public Class test
Private Shared number_of_methods As Integer = 2
Public Function get_number_of_methods_juz_an_example() As Integer
Return number_of_methods
[code]....
well of course instead of the code it would be just click and select (i wrote out the code in <> just to show what's happening)
View 5 Replies
Mar 15, 2012
i need some tutorial to implement BLS (Boneh-Lynn-Shacham) signature algorithm to create private key and public key to encrypt a message.I need tutorial to implement this in VB.NET.
View 1 Replies
Oct 21, 2005
I found an algorithm in C# that I need to convert to C. Problem is, I have never used C# so the syntax is really strange to me.
Implementation of Berlekamp-Massey algorithm for calculating linear complexity of binary sequence
s = byte array with binary sequence
returns Length of LFSR with smallest length which generates s
[Code].....
View 7 Replies
Dec 14, 2010
I want create my own algorithm
View 1 Replies
Aug 21, 2009
How would I be able to use my own Encryption Algorithm in my program such as encrypting text. I havn't been able to figure this out.
View 1 Replies
Aug 25, 2007
can you write an algorithm which can calculate 500 factorial.scientific symbol(mode) is unauthorized.Answer should be in String mode.
View 1 Replies
Apr 29, 2009
I am using VB.NET and I am trying to come up with some algorithm or some pseudo-code, or some VB.NET code that will let me do the following (hopefully I can explain this well):I have 2 collection objects, Cob1 and Cob2. These collection objects store objects that implement an interface called ICob. ICob has 3 properties. A boolean IsSelected property, a property called Length, which returns a TimeSpan, and a Rating property, which is a short integer.
OK, now Cob1 has about 100 objects stored in the collection and Cob2 is an empty collection. What I want to do is select objects from Cob1 and copy them over to Cob2. I want the following rules obeyed when selecting the objects though:
[Code]...
View 2 Replies
Nov 20, 2009
[code...]
So far, my friend has this, and we're trying to figure out how to get the code to tell convert F to C, and back. All we can use for input is (example:) 10,f and it will change it to 40,C.
View 2 Replies
Apr 29, 2011
Forgive me if this is a silly question....but I think back to my Comp. Sci. classes and I distinctly remember learning/being quizzed on several sorting algorithms and the corresponding 'Big O' notation.
Outside of the classroom though, I've never actually written code to sort. When I get results from a database, I use 'Order By'. Otherwise, I use a collection class that implements a sort. I have implemented IComparable to allow sorting; but I've never gone beyond that.Was sorting always just an academic pursuit for those of us who don't implement languages/frameworks? Or is it just that modern languages running on modern hardware make it a trivial detail to worry about?
Finally, when I call .Sort on a List(Of String), for example, what sort algorithm is being used under the hood?
View 9 Replies
May 30, 2011
I'm trying to convert the following algorithm from C# to VB.NET and the VB.NET I have is not producing the same results as my C# algorithm, can someone tell me where I've gone wrong in my conversion?
public static IEnumerable<T[]> Combinations<T>(this IEnumerable<T> elements, int k)
{
List<T[]> result = new List<T[]>();
[code]....
View 4 Replies
Oct 17, 2011
I need to encrypt vbs file using a cryptographic algorithm. I read about converting it into vbe file, but is there any other way to do it?
View 1 Replies
Mar 17, 2011
I have visual studio 2008, and we have been given specific tasks to carry our for our course, we have been asked to implement euclid's algorithm by using a while loop, doing so without the visual part of visual basic whatever that means an example of a question they gave was 1)HCF(88,26)=2 how I would go about doing this, as I am thoroughly confused, and deadlines are fast approaching.
View 3 Replies
Sep 9, 2010
I have some text files that contain
<img width="100" or
<img width="1400" or....
How could i replace all above with the following, since the image width is not static?
<img width="200"
View 1 Replies
May 8, 2012
i am working on project of using ant colony optimization and espcially on antnet algorithm but i have many problems in programming of this algorithm, and since i dont perfer using simulation for that purpose.
View 4 Replies
Jan 10, 2010
i want to implement bankers algorithm in vb.net how can i implement it
View 1 Replies
Jul 20, 2011
I am struggling to write a sorting algorithm that can sort characters in a word lexicographically (alphabetically) as follows
lexicographical sort of the word :- Contamination
lexicographically
Sorted Text Index
[code]....
write a pseudo code / or an implementation in C# or VB.NET of how I can do a lexicographical sort of the word above?
View 3 Replies
Nov 7, 2010
I am trying to pair numbers, like for a tournament. I need an idea for the algorithm to pair up the numbers, not the code, but the algorithm.
View 1 Replies