vote up 0 vote down star

Consider the code:

fileHandle = open ( 'test8.pem','w' )
fileHandle.write (data)

pub_key = M2Crypto.RSA.load_pub_key(open('test8.pem'))

Error coming like :

 File "/usr/lib/python2.4/site-packages/M2Crypto/RSA.py", line 343, in load_pub_key
bio = BIO.openfile(file) 
  File "/usr/lib/python2.4/site-packages/M2Crypto/BIO.py", line 186, in openfile
    return File(open(filename, mode))
IOError: [Errno 2] No such file or directory: ''

what wrong in the way i use ? My query is how do I pass the file into load_pub_key method so it can be accessible by simply passing the file name ?

flag
exact duplicate: stackoverflow.com/questions/1176055/… – SilentGhost Aug 25 at 10:31
your code doesn't correspond to your error. straighten your story. – SilentGhost Aug 25 at 10:32
no, it isn't. answer to that question quite clearly indicates that you need to pass filename to load_pub_key. if you want anything to be written to your file you'd need to flush the buffer by closing the fileHandle. – SilentGhost Aug 25 at 10:40
ya its duplicate but here the problem in accessing the file in the method.is there any other way to pass the file i.e with the directory? – jass Aug 25 at 10:41
1  
answers to previous question clearly state that you must pass filename to load_pub_key. is that clear now? – SilentGhost Aug 25 at 10:56
show 1 more comment

2 Answers

vote up 0 vote down

this should work for you:

fname = 'test8.pem'
fileHandle = open(fname, 'w')
fileHandle.write(data)
fileHandle.close()
pub_key = M2Crypto.RSA.load_pub_key(fname)
link|flag
thanks its seems cool but after applying this code again error : Traceback (most recent call last): File "RetEnc.py", line 17, in ? pub_key = M2Crypto.RSA.load_pub_key(fname) File "/usr/lib/python2.4/site-packages/M2Crypto/RSA.py", line 344, in load_pub_key return load_pub_key_bio(bio) File "/usr/lib/python2.4/site-packages/M2Crypto/RSA.py", line 360, in load_pub_key_bio rsa_error() File "/usr/lib/python2.4/site-packages/M2Crypto/RSA.py", line 240, in rsa_error raise RSAError, m2.err_reason_error_string(m2.err_get_error()) M2Crypto.RSA.RSAError: no start line – jass Aug 25 at 11:00
so content of your file is malformed. and it's outside of the scope of this question. – SilentGhost Aug 25 at 11:05
vote up 0 vote down

If you pass test8.pem without quotes, Python interprets it as the name of a variable, which is not defined, hence the error.

I don't know the specific library you are using but I would guess that you need to pass fileHandle instead.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.