User Profile

Collapse

Profile Sidebar

Collapse
akaash19
akaash19
Last Activity: May 4 '10, 12:28 PM
Joined: Mar 2 '10
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • akaash19
    started a topic IVR in PHP
    in PHP

    IVR in PHP

    Hello friends,
    I am trying to develop application in PHP where people can call toll free lines and speak their credit card and other details.the system will then read the voice response,conver t to text and process the credit card for payment.
    Are there any providers who provide api for this type of service?
    Is it possible to be done with LAMP servers.

    Thanks in Anticipation

    Regards
    Akaa...
    See more | Go to post

  • Thanks a lot Frinavale
    Bytes Rocks!!

    Regards
    akaash
    See more | Go to post

    Leave a comment:


  • akaash19
    started a topic Flash Video/Audio Chat peer to peer on browser.

    Flash Video/Audio Chat peer to peer on browser.

    I need to have a chat application in my client's website. The chat is one to one. Nothing like chat room. On clicking on a user,you can have video chat with him. To my reading, I will need to have FMS(Flash media server) and a good server.

    What I want is a open source script or paid which i can integrate with my website,But I need a very good audio and video quality with bug free. I thought of going for dimdim or webex but i heard...
    See more | Go to post

  • akaash19
    replied to Unable to decrypt data with mcrypt ..
    in PHP
    Hello friends,
    Thanks a lot for your response and interest.
    I tried encrypting with the command line of ssl.While decrypting with php it threw error.Then i created functions to encrypt with c using EVP functions and it worked well.Just some issue like padding came which can be managed.
    if you want the C code i can post that too.
    Thanks to all
    Akaash
    See more | Go to post

    Leave a comment:


  • Can you specify the algorithm where i can have multiple public keys for a private key? As per my reading, I am unable to find this type of mechanism.
    See more | Go to post

    Leave a comment:


  • Can we have multiple public key for one private key in PKI.

    I want to have one private key at server but multiple public keys for multiple clients. Can we generate multiple public keys for one private key?
    See more | Go to post

  • akaash19
    replied to Unable to decrypt data with mcrypt ..
    in PHP
    NO.no such error..in fact i the first letter of the block is visible.
    say i encrypt text HeloheloHelohel o, I am able to get the first and 9th letter and rest is garbage text. It is able to decrypt the first byte of the block.
    regards
    See more | Go to post

    Leave a comment:


  • akaash19
    replied to Unable to decrypt data with mcrypt ..
    in PHP
    I do agree that but cross platform encryption has much more that just key and iv like padding,file format etc .
    I want to know where i am missing those details and are there more to be counted.I guess person who has done this in php and C is the best judge.

    regards all
    akaash
    See more | Go to post

    Leave a comment:


  • akaash19
    replied to Unable to decrypt data with mcrypt ..
    in PHP
    Cross Platform encryption in C and php

    Hello friends.I have been trying to encrypt data in C and decrypt in PHP.SO far no success.:(
    I want to know if any of you have done encryption in C and PHP.
    If yes,please let me know and how.
    I encrypt data in c and when in decrypt in php,i get vague characters.
    Regards
    akaash
    See more | Go to post

    Leave a comment:


  • akaash19
    replied to Unable to decrypt data with mcrypt ..
    in PHP
    hi,,thanks for the input.
    I am doing base64 decode because data that i get as encrypted is garbage type.doing base64 helps to make it easy to send.

    Regards
    sumit
    See more | Go to post

    Leave a comment:


  • akaash19
    replied to Unable to decrypt data with mcrypt ..
    in PHP
    Any ideas?

    Any ideas?
    regards
    akaash
    See more | Go to post

    Leave a comment:


  • akaash19
    replied to Unable to decrypt data with mcrypt ..
    in PHP
    Oh certainly..
    I am using command line ssl to encrypt file using blowfish CBC mode.

    The decryption code is using mcrypt.
    Code:
    <?php
    //base 64 decoding the encrypted data.
    $data = base64_decode('BdRY7DN8iPDdjdsevowiZQ==');
    $key ='12345678';
    $iv ='1234';
    
    $res2 = mcrypt_decrypt(MCRYPT_BLOWFISH,$key,$data,MCRYPT_MODE_CBC,$iv);
    echo $res2;
    ?>
    Regards
    ...
    See more | Go to post
    Last edited by numberwhun; Mar 2 '10, 12:59 PM. Reason: Please use code tags!

    Leave a comment:


  • akaash19
    started a topic Unable to decrypt data with mcrypt ..
    in PHP

    Unable to decrypt data with mcrypt ..

    I am encrypting the data with blowfish CBC mode in C using openssl.
    I am trying to decrypt the data with the key using PHP mycrypt.But it does not give me the actual data but some garbage text.I am able to decrypt and encrypt with mcrypt but if i encrypt with c i am unable to decrypt with PHP.
    See more | Go to post
No activity results to display
Show More
Working...