~ubuntu-branches/debian/squeeze/erlang/squeeze

« back to all changes in this revision

Viewing changes to lib/ssh/src/ssh_rsa.erl

  • Committer: Bazaar Package Importer
  • Author(s): Sergei Golovan
  • Date: 2009-02-15 16:42:52 UTC
  • mfrom: (1.1.13 upstream)
  • Revision ID: james.westby@ubuntu.com-20090215164252-dxpjjuq108nz4noa
Tags: 1:12.b.5-dfsg-2
Upload to unstable after lenny is released.

Show diffs side-by-side

added added

removed removed

Lines of Context:
200
200
    ?dbg(true, "verify K=~p S=~w\nM=~w\nEM=~w\n", [K, S, M, EM]),
201
201
    case emsa_pkcs1_v1_5_encode(Mb, K) of
202
202
        EM -> ok;
203
 
        _S -> {error, invalid_signature} % exit(invalid_signature)
 
203
        _S ->
 
204
            io:format("S: ~p~n", [_S]),
 
205
            {error, invalid_signature} % exit(invalid_signature)
204
206
    end.
205
207
 
206
208