We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
Basic Cryptanalysis
Basic Cryptanalysis
Sort by
recency
|
51 Discussions
|
Please Login in order to post a comment
How do I read the dictionary file?
in c++
For anyone trying to solve this in Go like me, I had a little bit of a headache with this since
os.ReadFile()
isn't available, but the deprecated use ofio/ioutil
library worked for me:then you can use this to make a string slice of each line
How to read dictionary with PHP language.
I read this way....
$_dic = fopen("dictionary.lst", "r");
while(_dic)){ echo trim(strtolower($d))." "; }
piece of cake:):) very simple