Question
How can I do C/C++ implementations in cloud environments?
I have implemented HIBE "Hierarchical Identity-based Encryption" algorithm in C under ubuntu 11.10. How can I implement this code in a cloud environment? Should I proceed with simulation tools, and if so, which cloud simulation tools? Or something else?
All Answers (2)
-
I'm a bit confused about what you mean about running your algorithm in cloud environments. What do you want to achieve? Parallel processing? -
I agree with Arturo. I'm not sure what your question pertains to? In an IaaS (Infrastructure as a Service) environment, like Amazon Web Services, you're free to setup any programing language or application as you wish. It really has nothing to do with the programming language. There are several PaaS (Platform as a Service) providers out there where the choice of language *does* matter as the application development stack is there for you, but I don't know of one that supports C/C++. If you are looking for parallelism perhaps look at some c++ Hadoop/MapReduce clones out there.