<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2" -->
<rss version="2.0">
    <channel>
        <title>Lowyat.NET: Latest topics by yeoyl</title>
        <description></description>
        <link>http://forum.lowyat.net/</link>
        <lastBuildDate>Fri, 10 Jul 2026 13:25:38 +0800</lastBuildDate>
        <generator>FeedCreator 1.7.2</generator>
        <item>
            <title>Encryption in vb and encrypt in javascript.</title>
            <link>http://forum.lowyat.net/topic/3945480</link>
            <description>&lt;span style='font-size:16pt;line-height:100%'&gt;First i encrypt by using vb and folo by javascript. &lt;br /&gt;The result is not the same.&lt;br /&gt;HELP &amp;#33;&amp;#33;&amp;#33;&amp;#33;&lt;br /&gt; &lt;!--emo&amp;:(--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/sad.gif' border='0' style='vertical-align:middle' alt='sad.gif' /&gt;&lt;!--endemo--&gt;  &lt;!--emo&amp;:(--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/sad.gif' border='0' style='vertical-align:middle' alt='sad.gif' /&gt;&lt;!--endemo--&gt;  &lt;!--emo&amp;:help:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/icon_question.gif' border='0' style='vertical-align:middle' alt='icon_question.gif' /&gt;&lt;!--endemo--&gt;  &lt;!--emo&amp;:help:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/icon_question.gif' border='0' style='vertical-align:middle' alt='icon_question.gif' /&gt;&lt;!--endemo--&gt;  &lt;!--emo&amp;:help:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/icon_question.gif' border='0' style='vertical-align:middle' alt='icon_question.gif' /&gt;&lt;!--endemo--&gt;  &lt;!--emo&amp;:help:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/icon_question.gif' border='0' style='vertical-align:middle' alt='icon_question.gif' /&gt;&lt;!--endemo--&gt; &lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;  Private Function Encrypt(ByVal strText As String, ByVal encKey As String) As String&lt;br /&gt;      &lt;br /&gt;        Dim byKey() As Byte&lt;br /&gt;        Dim IV() As Byte&lt;br /&gt;&lt;br /&gt;       &lt;br /&gt;&lt;br /&gt;        Try&lt;br /&gt;&lt;br /&gt;            byKey = System.Text.Encoding.UTF8.GetBytes(encKey)&lt;br /&gt;            IV = System.Text.Encoding.UTF8.GetBytes(encKey)&lt;br /&gt;        &lt;br /&gt;&lt;br /&gt;            Dim des As New DESCryptoServiceProvider()&lt;br /&gt;            Dim inputByteArray() As Byte = Encoding.UTF8.GetBytes(strText)&lt;br /&gt;            Dim ms As New MemoryStream()&lt;br /&gt;            Dim cs As New CryptoStream(ms, des.CreateEncryptor(byKey, IV), CryptoStreamMode.Write)&lt;br /&gt;&lt;br /&gt;            cs.Write(inputByteArray, 0, inputByteArray.Length)&lt;br /&gt;            cs.FlushFinalBlock()&lt;br /&gt;          &lt;br /&gt;            Console.WriteLine(des.Mode.ToString)&lt;br /&gt;            Console.WriteLine(des.Padding.ToString)&lt;br /&gt;            Console.WriteLine(Convert.ToBase64String(ms.ToArray()))&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            Return Convert.ToBase64String(ms.ToArray())&lt;br /&gt;&lt;br /&gt;        Catch ex As Exception&lt;br /&gt;            Console.Write(ex.Message, &amp;quot;Error&amp;quot;)&lt;br /&gt;            Return &amp;quot;&amp;quot;&lt;br /&gt;        End Try&lt;br /&gt;&lt;br /&gt;    End Function&lt;br /&gt;&lt;br /&gt;Encrypt with javascript. &lt;br /&gt;    function encryptByDES(message, key) {&lt;br /&gt;     &lt;br /&gt;        var msgbytes = [];&lt;br /&gt;&lt;br /&gt;        for (var i = 0; i &amp;lt; message.length; ++i) {&lt;br /&gt;            msgbytes.push(message.charCodeAt(i));&lt;br /&gt;&lt;br /&gt;        }&lt;br /&gt;        var orimessage = msgbytes.join(&amp;quot;&amp;quot;);&lt;br /&gt;      &lt;br /&gt;&lt;br /&gt;        &lt;br /&gt;        var keybytes = [];&lt;br /&gt;&lt;br /&gt;        for (var i = 0; i &amp;lt; key.length; ++i) {&lt;br /&gt;            keybytes.push(key.charCodeAt(i));&lt;br /&gt;        }       &lt;br /&gt;        var orikey = keybytes.join(&amp;quot;&amp;quot;);&lt;br /&gt;&lt;br /&gt;        var keyHex = CryptoJS.enc.Utf8.parse(orikey);&lt;br /&gt;      &lt;br /&gt;        var iv = keyHex      &lt;br /&gt; &lt;br /&gt;        var encrypted = CryptoJS.DES.encrypt(orimessage, keyHex, {&lt;br /&gt;            mode: CryptoJS.mode.CBC,&lt;br /&gt;            padding: CryptoJS.pad.Pkcs7,           &lt;br /&gt;            iv:iv&lt;br /&gt;          &lt;br /&gt;        });&lt;br /&gt;             &lt;br /&gt;     &lt;br /&gt;   &lt;br /&gt;         document.writeln(&amp;#39;encrypted.toString()  -&amp;gt; base64(ciphertext)  :&amp;#39;, encrypted.toString());&lt;br /&gt;         document.writeln(&amp;#39;base64(ciphertext)    &amp;lt;- encrypted.toString():&amp;#39;, encrypted.ciphertext.toString(CryptoJS.enc.Base64));&lt;br /&gt;         document.writeln(&amp;#39;ciphertext.toString() -&amp;gt; ciphertext hex      :&amp;#39;, encrypted.ciphertext.toString());&lt;br /&gt;        return encrypted.toString();&lt;br /&gt;    }&lt;br /&gt;</description>
            <author>yeoyl</author>
            <category>Codemasters</category>
            <pubDate>Thu, 12 May 2016 21:37:29 +0800</pubDate>
        </item>
        <item>
            <title>makes life/job easier as simple as abc</title>
            <link>http://forum.lowyat.net/topic/3526582</link>
            <description>Hello hello, &lt;br /&gt;&lt;br /&gt;I provide service:&lt;br /&gt;Format PC&lt;br /&gt;Create system,&lt;br /&gt;Create apps,&lt;br /&gt;Desgin website,&lt;br /&gt;Edit website,&lt;br /&gt;Excel&lt;br /&gt;Etc...etc...&lt;br /&gt;Pm me if you&amp;#39;ve any request ya&lt;br /&gt;Thanks  &lt;!--emo&amp;:D--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/biggrin.gif' border='0' style='vertical-align:middle' alt='biggrin.gif' /&gt;&lt;!--endemo--&gt; &lt;br /&gt; &lt;!--emo&amp;:D--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/biggrin.gif' border='0' style='vertical-align:middle' alt='biggrin.gif' /&gt;&lt;!--endemo--&gt;   &lt;!--emo&amp;:)--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/smile.gif' border='0' style='vertical-align:middle' alt='smile.gif' /&gt;&lt;!--endemo--&gt; &lt;br /&gt;&lt;br /&gt;Previous experience:&lt;br /&gt;Android application for tourist,&lt;br /&gt;Apps using java language&lt;br /&gt;Website &lt;br /&gt;Secure login page&lt;br /&gt;ERP system</description>
            <author>yeoyl</author>
            <category>Services Noticeboard</category>
            <pubDate>Wed, 18 Mar 2015 22:02:25 +0800</pubDate>
        </item>
        <item>
            <title>[WTS] Guinea Pig Cage</title>
            <link>http://forum.lowyat.net/topic/3377577</link>
            <description>&lt;span style='font-size:16pt;line-height:100%'&gt;&lt;b&gt;Selling used Guinea Pig cage for RM89.90 as my guinea pig is no longer alive~ &lt;!--emo&amp;:(--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/sad.gif' border='0' style='vertical-align:middle' alt='sad.gif' /&gt;&lt;!--endemo--&gt; &lt;br /&gt;Normal price is 129.90 and now I&amp;#39;m offering for RM89.90&lt;br /&gt;the price is negotiable. &lt;br /&gt;Below is the sample photo of the cage ,my one is blue color.&lt;br /&gt;Pm for best price .&lt;br /&gt;Thx&lt;/b&gt;&lt;/span&gt;</description>
            <author>yeoyl</author>
            <category>Pet Store Garage Sales</category>
            <pubDate>Mon, 13 Oct 2014 20:09:27 +0800</pubDate>
        </item>
        <item>
            <title>2nd hand kia picanto vs 2nd myvi vs new viva</title>
            <link>http://forum.lowyat.net/topic/3297985</link>
            <description>Budget is below 30k.&lt;br /&gt;looking for advice. &lt;br /&gt; &lt;!--emo&amp;:D--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/biggrin.gif' border='0' style='vertical-align:middle' alt='biggrin.gif' /&gt;&lt;!--endemo--&gt;</description>
            <author>yeoyl</author>
            <category>The Museum Of Kopitiam</category>
            <pubDate>Tue, 22 Jul 2014 21:06:25 +0800</pubDate>
        </item>
        <item>
            <title>Does anyone open Singapore account</title>
            <link>http://forum.lowyat.net/topic/3289530</link>
            <description>if the interest rate there is high, then why dun ppl save money there and then convert it back to Rm?&lt;br /&gt;i think the &amp;#036; u get when save money there wil be better than u save in here Malaysia right?&lt;br /&gt;this is just my opinion &lt;!--emo&amp;:)--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/smile.gif' border='0' style='vertical-align:middle' alt='smile.gif' /&gt;&lt;!--endemo--&gt; &lt;br /&gt;correct me if I&amp;#39;m wrong. &lt;br /&gt; &lt;!--emo&amp;:)--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/smile.gif' border='0' style='vertical-align:middle' alt='smile.gif' /&gt;&lt;!--endemo--&gt;</description>
            <author>yeoyl</author>
            <category>Finance, Business and Investment House</category>
            <pubDate>Mon, 14 Jul 2014 20:27:38 +0800</pubDate>
        </item>
        <item>
            <title>Typing job</title>
            <link>http://forum.lowyat.net/topic/3288199</link>
            <description>Actually is there any typing job available in Malaysia?&lt;br /&gt;Do company actually ask people outside from their company to type for them ?&lt;br /&gt;Anyone know about this?&lt;br /&gt;and how much can earn from this?</description>
            <author>yeoyl</author>
            <category>The Museum Of Kopitiam</category>
            <pubDate>Sun, 13 Jul 2014 15:32:54 +0800</pubDate>
        </item>
        <item>
            <title>Hyundai i10</title>
            <link>http://forum.lowyat.net/topic/3287512</link>
            <description>planning to buy one, so do some survey first. &lt;!--emo&amp;:)--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/smile.gif' border='0' style='vertical-align:middle' alt='smile.gif' /&gt;&lt;!--endemo--&gt;&lt;br /&gt;and anyone owning picanto 2013?&lt;br /&gt;how&amp;#39;s the car?</description>
            <author>yeoyl</author>
            <category>The Museum Of Kopitiam</category>
            <pubDate>Sat, 12 Jul 2014 19:22:58 +0800</pubDate>
        </item>
        <item>
            <title>fresh grad  looking for advice</title>
            <link>http://forum.lowyat.net/topic/3279099</link>
            <description>please share your experience here, need your advice, thanks&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;thanks &lt;!--emo&amp;:)--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/smile.gif' border='0' style='vertical-align:middle' alt='smile.gif' /&gt;&lt;!--endemo--&gt;</description>
            <author>yeoyl</author>
            <category>Jobs &amp;amp; Careers</category>
            <pubDate>Fri, 04 Jul 2014 16:44:33 +0800</pubDate>
        </item>
        <item>
            <title>Besta CD628</title>
            <link>http://forum.lowyat.net/topic/3176991</link>
            <description>&lt;span style='font-size:16pt;line-height:100%'&gt;[attachmentid=3909569]&lt;br /&gt;[attachmentid=3909570]&lt;br /&gt;[attachmentid=3909571]&lt;br /&gt;[attachmentid=3909572]&lt;/span&gt;&lt;br /&gt;&lt;a href='http://www.besta.my/cms/?q=node/70' target='_blank'&gt;Besta CD628&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;pm if interest,price is negotiable.&lt;br /&gt; &lt;!--emo&amp;:)--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/smile.gif' border='0' style='vertical-align:middle' alt='smile.gif' /&gt;&lt;!--endemo--&gt;</description>
            <author>yeoyl</author>
            <category>Garage Sales Archive</category>
            <pubDate>Sun, 30 Mar 2014 09:40:50 +0800</pubDate>
        </item>
        <item>
            <title>[WTS]Transfromer Pad TF700T</title>
            <link>http://forum.lowyat.net/topic/3168151</link>
            <description>&lt;span style='font-size:16pt;line-height:100%'&gt; [attachmentid=3899122][attachmentid=3899123]&lt;br /&gt;[attachmentid=3899127][attachmentid=3899117]&lt;br /&gt;[attachmentid=3899119][attachmentid=3899121]&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;SPEC: &lt;br /&gt;&lt;a href='http://www.asus.com/Tablets_Mobile/ASUS_Transformer_Pad_TF700T/' target='_blank'&gt;http://www.asus.com/Tablets_Mobile/ASUS_Tr...mer_Pad_TF700T/&lt;/a&gt;&lt;br /&gt;&lt;a href='http://www.gsmarena.com/asus_transformer_prime_tf700t-4421.php' target='_blank'&gt;http://www.gsmarena.com/asus_transformer_p...tf700t-4421.php&lt;/a&gt;&lt;br /&gt;Color: Champagne Gold &lt;br /&gt;still in good condition as shown in picture~only use a few month~buy on oct 2013&lt;br /&gt;root and jailbreak(android jailbreak)&lt;br /&gt;reason to sell: already got phone and seldom use&lt;br /&gt;PM if interested</description>
            <author>yeoyl</author>
            <category>Garage Sales Archive</category>
            <pubDate>Fri, 21 Mar 2014 12:32:10 +0800</pubDate>
        </item>
        <item>
            <title>RSA encryption</title>
            <link>http://forum.lowyat.net/topic/3164450</link>
            <description>&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;?php&lt;br /&gt;   include(&amp;#39;Crypt/RSA.php&amp;#39;);&lt;br /&gt;&lt;br /&gt;   &amp;#036;publickey = file_get_contents(&amp;#39;itiss1.txt&amp;#39;);&lt;br /&gt;  echo &amp;#036;publickey;&lt;br /&gt;&lt;br /&gt;    &amp;#036;rsa = new Crypt_RSA();&lt;br /&gt;    &amp;#036;rsa-&amp;gt;loadKey(&amp;#036;publickey);&lt;br /&gt;    &amp;#036;rsa-&amp;gt;setEncryptionMode(CRYPT_RSA_ENCRYPTION_PKCS1);&lt;br /&gt;    &lt;br /&gt;  &amp;#036;plaintext = &amp;#39;My Test Msgsdfasdfasfsadfsafsfsdfsdfsadfasfasfasfwrwefsdsdafasdfffffffffffffffffffffffffffffffffffgrgergsdasdfasdfwearfawf&amp;#39;;&lt;br /&gt;   echo &amp;#036;plaintext;&lt;br /&gt;   &amp;#036;ciphertext = &amp;#036;rsa -&amp;gt; encrypt(&amp;#036;plaintext);&lt;br /&gt;   &amp;#036;ciphertext_hex = bin2hex(&amp;#036;ciphertext);&lt;br /&gt;   echo &amp;#036;ciphertext_hex;&lt;br /&gt;&lt;br /&gt;   ?&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;I could display the public key but couldn&amp;#39;t display the ciphertext,anyone knw what&amp;#39;s the problem?</description>
            <author>yeoyl</author>
            <category>Codemasters</category>
            <pubDate>Tue, 18 Mar 2014 01:07:06 +0800</pubDate>
        </item>
        <item>
            <title>Format pc</title>
            <link>http://forum.lowyat.net/topic/3083391</link>
            <description>May I know whether format of pc can be done online or not? &lt;!--emo&amp;:hmm:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/hmm.gif' border='0' style='vertical-align:middle' alt='hmm.gif' /&gt;&lt;!--endemo--&gt; &lt;br /&gt;thanks ya &lt;!--emo&amp;:)--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/smile.gif' border='0' style='vertical-align:middle' alt='smile.gif' /&gt;&lt;!--endemo--&gt;</description>
            <author>yeoyl</author>
            <category>Mobile Computing</category>
            <pubDate>Mon, 30 Dec 2013 19:53:36 +0800</pubDate>
        </item>
        <item>
            <title>IT Training</title>
            <link>http://forum.lowyat.net/topic/3083389</link>
            <description>Looking for training for IT field,please send me the link if there&amp;#39;s free training sponsor by company or etc..&lt;br /&gt;thanks ya</description>
            <author>yeoyl</author>
            <category>Education Essentials</category>
            <pubDate>Mon, 30 Dec 2013 19:52:00 +0800</pubDate>
        </item>
        <item>
            <title>CCNA online exam</title>
            <link>http://forum.lowyat.net/topic/2985210</link>
            <description>&lt;span style='font-size:14pt;line-height:100%'&gt;I&amp;#39;m planning to take the CCNA exam on weekend, but I have checked those centers,&lt;br /&gt;non of them have weekend exam so I plan to take it online,&lt;br /&gt;is anyone here have taken the exam online??&lt;br /&gt;and what&amp;#39;s the step??&lt;br /&gt;and if you have taken the CCNA exam, where you take it?&lt;br /&gt;and when?&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;thx &lt;!--emo&amp;:help:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/icon_question.gif' border='0' style='vertical-align:middle' alt='icon_question.gif' /&gt;&lt;!--endemo--&gt;  &lt;!--emo&amp;:help:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/icon_question.gif' border='0' style='vertical-align:middle' alt='icon_question.gif' /&gt;&lt;!--endemo--&gt;</description>
            <author>yeoyl</author>
            <category>Education Essentials</category>
            <pubDate>Sun, 06 Oct 2013 22:29:01 +0800</pubDate>
        </item>
        <item>
            <title>Score A online exercise for your child</title>
            <link>http://forum.lowyat.net/topic/2974805</link>
            <description>&lt;span style='font-size:16pt;line-height:100%'&gt;[attachmentid=3649189][attachmentid=3649190]&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style='font-size:16pt;line-height:100%'&gt;It is an online learning system , it include exercise from standard 1 to Form 5&lt;br /&gt;&lt;br /&gt;Check out the link: &lt;a href='http://www.scorea.com.my/' target='_blank'&gt;Score A &lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;The Original price is 398 and I&amp;#39;m selling for RM200.&lt;br /&gt;&lt;br /&gt;Only have 2.&lt;br /&gt;&lt;br /&gt;Thanks for your support.&lt;br /&gt;&lt;br /&gt;Reason for sale: Need &amp;#036;&amp;#036; urgently.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;</description>
            <author>yeoyl</author>
            <category>Garage Sales Archive</category>
            <pubDate>Fri, 27 Sep 2013 20:04:58 +0800</pubDate>
        </item>
        <item>
            <title>MTV WORLD STAGE TICKET</title>
            <link>http://forum.lowyat.net/topic/0</link>
            <description></description>
            <category>Garage Sales Archive</category>
            <pubDate>Thu, 01 Jan 1970 07:30:00 +0800</pubDate>
        </item>
        <item>
            <title>MTV WORLD STAGE TICKET</title>
            <link>http://forum.lowyat.net/topic/2950509</link>
            <description>[attachmentid=3618710]</description>
            <author>yeoyl</author>
            <category>Garage Sales Archive</category>
            <pubDate>Fri, 06 Sep 2013 23:03:34 +0800</pubDate>
        </item>
        <item>
            <title>network security engineer</title>
            <link>http://forum.lowyat.net/topic/2741392</link>
            <description>I&amp;#39;m just curious why so few companies hire network security engineer?(refer to jobstreet) Xp&lt;br /&gt;is this position not important to a company?&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;</description>
            <author>yeoyl</author>
            <category>Education Essentials</category>
            <pubDate>Tue, 19 Mar 2013 01:10:27 +0800</pubDate>
        </item>
        <item>
            <title>is CGPA important to get a job?</title>
            <link>http://forum.lowyat.net/topic/2741379</link>
            <description>I&amp;#39;m a IT student, my CGPA is &amp;lt;3.0&lt;br /&gt;so I&amp;#39;m kinda worried about ....&lt;br /&gt;will I get a nice job after I&amp;#39;m graduated?&lt;br /&gt;is that really important to get CGPA more than 3.0??&lt;br /&gt;what if I get 2.8?&lt;br /&gt; &lt;!--emo&amp;:D--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/biggrin.gif' border='0' style='vertical-align:middle' alt='biggrin.gif' /&gt;&lt;!--endemo--&gt; &lt;br /&gt;or 2.5 plus some professional cert?&lt;br /&gt;&lt;br /&gt;thanks for ur time.&lt;br /&gt; &lt;!--emo&amp;:)--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/smile.gif' border='0' style='vertical-align:middle' alt='smile.gif' /&gt;&lt;!--endemo--&gt; &lt;br /&gt;&lt;br /&gt;</description>
            <author>yeoyl</author>
            <category>Education Essentials</category>
            <pubDate>Tue, 19 Mar 2013 00:55:29 +0800</pubDate>
        </item>
        <item>
            <title>cannot see the file inside the folder</title>
            <link>http://forum.lowyat.net/topic/2650565</link>
            <description>&lt;span style='font-size:16pt;line-height:100%'&gt;[attachmentid=3237296][attachmentid=3237299]&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;The problem is in F drive. &lt;br /&gt;I couldn&amp;#39;t see any file inside.&lt;br /&gt;any suggestion?</description>
            <author>yeoyl</author>
            <category>Software</category>
            <pubDate>Tue, 01 Jan 2013 18:25:33 +0800</pubDate>
        </item>
    </channel>
</rss>
