Skip to content

Commit

Permalink
fix identation
Browse files Browse the repository at this point in the history
  • Loading branch information
wuriyanto48 committed Sep 3, 2023
1 parent bf456a8 commit e17effb
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 10 deletions.
3 changes: 1 addition & 2 deletions _examples/rsa_decrypt_oaep.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@ int main(int argc, char** argv) {
return 0;
}

char* load_file(char const* path)
{
char* load_file(char const* path) {
char* buffer = 0;
long length;
FILE * f = fopen (path, "rb");
Expand Down
3 changes: 1 addition & 2 deletions _examples/rsa_digital_signature.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,7 @@ int main(int argc, char** argv) {
return 0;
}

char* load_file(char const* path)
{
char* load_file(char const* path) {
char* buffer = 0;
long length;
FILE * f = fopen (path, "rb");
Expand Down
3 changes: 1 addition & 2 deletions _examples/rsa_digital_signature_verify.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@ int main(int argc, char** argv) {
return 0;
}

char* load_file(char const* path)
{
char* load_file(char const* path) {
char* buffer = 0;
long length;
FILE * f = fopen (path, "rb");
Expand Down
3 changes: 1 addition & 2 deletions _examples/rsa_encrypt_oaep.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@ int main(int argc, char** argv) {
return 0;
}

char* load_file(char const* path)
{
char* load_file(char const* path) {
char* buffer = 0;
long length;
FILE * f = fopen (path, "rb");
Expand Down
3 changes: 1 addition & 2 deletions tests/test.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
#include <string.h>
#include "../crypsi.h"

char* load_file(char const* path)
{
char* load_file(char const* path) {
char* buffer = 0;
long length;
FILE * f = fopen (path, "rb");
Expand Down

0 comments on commit e17effb

Please sign in to comment.