Skip to content

Commit

Permalink
Fix documentation mistakeg
Browse files Browse the repository at this point in the history
  • Loading branch information
gioblu committed Jul 10, 2016
1 parent 938d05c commit 1a64bd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ To encrypt a string:
```cpp
char source[] ="CRYPTMEPLEASE";
char destination[14];
cape.encrypt(source, 13);
cape.encrypt(source, destination, 13);
```
Inside `destination` you find the crypted version of your string, with an additional byte at the end, use to encrypt data, called initialization vector, so be sure to define your destination buffer, always 1 byte longer:
```cpp
Expand Down

0 comments on commit 1a64bd3

Please sign in to comment.