Skip to content

Commit

Permalink
Connecting bazel and some architecture refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
0xBLCKLPTN committed Sep 24, 2024
1 parent ab962ab commit 643430c
Show file tree
Hide file tree
Showing 871 changed files with 87 additions and 56,759 deletions.
8 changes: 8 additions & 0 deletions Libraries/Cryptograf/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

cc_binary(
name = "cryptograf",
srcs = ["src/cryptograf.c"],
hdrs = ["includes/cryptograf.h"],
visibility = ["//visibility:public"]
#deps = ["//square:square"]
)
11 changes: 11 additions & 0 deletions Libraries/Cryptograf/includes/cryptograf.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#define CRYPTOGRAF_H

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

void init_sodium();
void poly1305_hash();
void blake2_hash();
void chacha20_encode();
void chacha20_decode();
10 changes: 10 additions & 0 deletions Libraries/Cryptograf/src/cryptograf.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#include "./includes/cryptograf.h"
void init_sodium();
void poly1305_hash();
void blake2_hash();
void chacha20_encode();
void chacha20_decode();

int main() {
printf("Hello World!\n");
}
File renamed without changes.
12 changes: 12 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@

# build authorization plugin
bap:
mkdir build && bazel build //plugins/Authorization:authorization

# bazel clean
bc:
bazel clean

# bazel clean async
bca:
bazel clean --async
3 changes: 0 additions & 3 deletions PluginManager/src/kittens.txt

This file was deleted.

Binary file removed PluginManager/src/ks_manager
Binary file not shown.
1 change: 0 additions & 1 deletion PluginManager/src/ks_manager.nim

This file was deleted.

File renamed without changes.
1 change: 0 additions & 1 deletion bridges/client_examples/telegram/.gitignore

This file was deleted.

768 changes: 0 additions & 768 deletions bridges/client_examples/telegram/poetry.lock

This file was deleted.

16 changes: 0 additions & 16 deletions bridges/client_examples/telegram/pyproject.toml

This file was deleted.

13 changes: 0 additions & 13 deletions bridges/client_examples/telegram/src/dispatcher.py

This file was deleted.

63 changes: 0 additions & 63 deletions bridges/client_examples/telegram/src/frontend/handlers.py

This file was deleted.

9 changes: 0 additions & 9 deletions bridges/client_examples/telegram/src/main.py

This file was deleted.

46 changes: 0 additions & 46 deletions bridges/client_examples/telegram/src/middleware/api_usage.py

This file was deleted.

18 changes: 0 additions & 18 deletions configuration-files/nginx_load_balancer.conf

This file was deleted.

5 changes: 0 additions & 5 deletions configuration-files/prometheus.yml

This file was deleted.

33 changes: 0 additions & 33 deletions configuration.json

This file was deleted.

6 changes: 0 additions & 6 deletions docs/illustrations/black/Kingdom-API.svg

This file was deleted.

4 changes: 0 additions & 4 deletions docs/illustrations/black/Kingdom-Cloud.svg

This file was deleted.

4 changes: 0 additions & 4 deletions docs/illustrations/black/Kingdom-Schedule.svg

This file was deleted.

5 changes: 0 additions & 5 deletions docs/illustrations/black/Kingdom-System.svg

This file was deleted.

7 changes: 0 additions & 7 deletions docs/illustrations/white/Kingdom-API.svg

This file was deleted.

4 changes: 0 additions & 4 deletions docs/illustrations/white/Kingdom-Cloud.svg

This file was deleted.

4 changes: 0 additions & 4 deletions docs/illustrations/white/Kingdom-Schedule.svg

This file was deleted.

5 changes: 0 additions & 5 deletions docs/illustrations/white/Kingdom-System.svg

This file was deleted.

36 changes: 0 additions & 36 deletions docs/screenshots/AboutProject.svg

This file was deleted.

Binary file removed docs/screenshots/Architecture.png
Binary file not shown.
40 changes: 0 additions & 40 deletions docs/screenshots/Important.svg

This file was deleted.

Binary file removed docs/screenshots/SimplyArchitecture.png
Binary file not shown.
26 changes: 0 additions & 26 deletions docs/screenshots/WhyRust.svg

This file was deleted.

Loading

0 comments on commit 643430c

Please sign in to comment.