Softimage Forum (Read Only)
Welcome to Autodesk’s Softimage Forums. Share your knowledge, ask questions, and explore popular Softimage topics.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

MD5 Exporter

3 REPLIES 3
Reply
Message 1 of 4
Anonymous
374 Views, 3 Replies

MD5 Exporter

Hey All,

Does anyone know of a Softimage MD5 exporter?

I can't seem to track one down.

Thanks

Burg
3 REPLIES 3
Message 2 of 4
Anonymous
in reply to: Anonymous

What to you exactly need?

If it's for already saved files, here's a python code which will give you the md5 of the file:

import hashlib

file = open("your_file_path", "rb") # Replace 'your_file_path' by the path of your file.
to_hash = file.read()
file.close()

m = hashlib.md5() # You can use other format instead of md5 (sha1, sha224, sha256, sha384 and sha512)
m.update(to_hash)
md5 = m.hexdigest()

print md5


If you want the md5 of a softimage object which is still not saved (only in memory), I can't help you on that.
Message 3 of 4
Anonymous
in reply to: Anonymous

Andre,

Thanks for your reply. However I believe I failed to remember that MD5 is also the name of cryptographic Hash function as well as a Mesh format!

See here: http://www.modwiki.net/wiki/MD5MESH_(file_format). I guess I should've put MD5Mesh Exporter. Sorry for being unclear.

So does anyone know about a MD5Mesh and MD5Anim Exporter?

Thanks

Bry
Message 4 of 4
Anonymous
in reply to: Anonymous

Anyone help me with this?

Cheers

Burg

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Autodesk Design & Make Report