tags:

views:

57

answers:

3

is it possible to encrypt an audio file in c++ using rc5?

+1  A: 

Yes.

I await the downvotes.

MSN
+1. It is the correct answer to this question :-) (I constrained myself from answering the same thing).
driis
Lol - No down vote, but no upvote because others have more info :)
Michael Dorgan
Right now it's +1/-1. I should probably delete this, but it's too much fun to leave it up.
MSN
can anyone help me out with an article as to how to go into the bits of an audio file in c? rather than just be able to play the file in c
mekasperasky
@mekasperasky, the fact that it is an audio file makes no difference. fopen will do.
driis
+1  A: 

Yes, it is possible. There is a reference implementation in C available, and a wikipedia article, that links to a paper about the algorithm and how to implement it, along with other resources.

driis
+1  A: 

Yes. Crypto++ is an encryption library for C++. It supports RC5 and RC6. The fact that it is an audio file is of no importance.

Kevin Panko