Ask a Question related to PERL Modules, Design and Development.

  1. #1

    Default Module Digest:SHA

    Hallo,

    I was very happy beeing able to get Digest:SHA working in perl.
    Its in a quite good condition and eg sha256_hex works perfectly.
    Now I have the problem, that for my special application
    I need something like sha64_hex(at least I think so), but Its not
    implemented yet. I have this script available in java, but i need it in
    perl. Is it possible to derive it from sha256_hex somehow ?

    rds

    Guenther Sohler Guest

  2. Similar Questions and Discussions

    1. General Module question.. Digest::HMAC_MD5
      So I need to get into my yabbse database and I am using (trying) the Digest::HMAC_MD5 module, which powweb says it has installed, but I cannot get...
    2. ANN: Digest::SHA Module on CPAN
      c.l.p.m, For those of you interested in computing SHA message digests, I've just released the lastest optimized version of the Digest::SHA module...
    3. Digest?
      Does anyone know how I can turn my subscription to this list into a digest form? I'm not using Ruby much this semester and I'd like to reduce the...
    4. debian-user-digest Digest V2003 #2112
      > For Logitech PS2 mice, you should try uisng the MouseManPlusPS/2 protocol. Here is a snippet from my XF86Config-4 Section "InputDevice"...
    5. Digest::MD5 on Mac OS X
      X-Mail-Count: 84102 X-MLServer: fml ; post only (anyone can post) X-ML-Info: If you have a question, please contact ruby-talk-admin@ruby-lang.org;...
  3. #2

    Default Re: Module Digest:SHA


    "Guenther Sohler" <guenther.sohler@wipro.com> wrote in message
    news:pan.2006.06.12.12.00.21.370097@wipro.com...
    > Hallo,
    >
    > I was very happy beeing able to get Digest:SHA working in perl.
    > Its in a quite good condition and eg sha256_hex works perfectly.
    > Now I have the problem, that for my special application
    > I need something like sha64_hex(at least I think so), but Its not
    > implemented yet. I have this script available in java, but i need it in
    > perl. Is it possible to derive it from sha256_hex somehow ?
    >
    I don't know of any "sha64". My expectation is that "sha64_hex" would output
    16 hex digits. Is that what you're after ?

    I assumed, initially, that you meant "sha256_hex" (since that outputs 64 hex
    digits), but I see that you're already aware of that function - so
    presumably it's not what you want.

    What length is the hex string produced by the java program ?

    Cheers,
    Rob



    Sisyphus Guest

  4. #3

    Default Re: Module Digest:SHA

    Dear Sisiphus,

    thank you for your reply!
    I think, my java code creates 16 digits of code. At least it looks like.
    If you mail me at [email]guenther.sohler@gmx.at[/email], I can reply you with the java
    code attached. Then you could also judge, if the used algorithm
    perfctly fits SHA. rds



    Guenther Sohler Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139