- 88B6D8984DF53BCBC6D173D67B4BA34E0F25EF40D204C3787DAAE8BD38C8B633AD4EF8FF39F10BC5D541423774386BA0C671FB49218DF1A89A48A0DDCDFBD324
+ 30C188E997945F1E93BE60C3D4C9D19F96C316252CA5FD8E538BCE871D6E67C0538EE113EA9456B37E0E91572D2B218E70B139A5BDB8D79B64EED2D5E7AFC71B
smg_comms/tests/test_rsa_oaep.ads
(9 . 13)(9 . 5)
327 procedure test_rsa; -- test rsa only
328 procedure test_rsa_oaep; -- test rsa+oaep
329
330 procedure Hex2Octets( Hex: in String; O: out Raw_Types.Octets );
331 procedure PrintOctets( O: in Raw_Types.Octets; Title: in String );
332 -- reads a full private key from specified file, in Hex format
333 -- one component per line, in order: n, e, d, p, q, u
334 -- NB: length of each component has to match *precisely* the expected length
335 -- specifically, using Raw_Types:
336 -- n, d are RSA_len'Length*2;
337 -- e, p, q, u are RSA_half'Length*2
338 procedure ReadRSAKey( Filename: in String; Key: out RSA_OAEP.RSA_skey );
339 end Test_RSA_OAEP;