main.c 966 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. #include <mpi.h>
  2. #include "aes.h"
  3. #include <stdio.h>
  4. #include <string.h>
  5. #include <stdlib.h>
  6. #define PACKAGE_SIZE 4096
  7. #define PACKAGE_NUM 2048
  8. #define AES_ONCE 16
  9. int main(int argc, char *argv[]) {
  10. uint8_t key[] = {
  11. 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,
  12. 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f};
  13. uint8_t in[AES_ONCE], out[AES_ONCE];
  14. uint8_t *w;
  15. int rank, size;
  16. uint8_t xbuf[2][PACKAGE_SIZE];
  17. uint8_t ybuf[2][PACKAGE_SIZE];
  18. int i, j, k;
  19. MPI_Request request;
  20. MPI_Status status;
  21. w = aes_init(sizeof(key));
  22. aes_key_expansion(key, w);
  23. MPI_Init(&argc, &argv);
  24. MPI_Comm_rank(MPI_COMM_WORLD, &rank);
  25. MPI_Comm_size(MPI_COMM_WORLD, &size);
  26. if (rank == 0) {
  27. for (i = 0; i < PACKAGE_NUM; ++i) {
  28. }
  29. } else if (rank == 1) {
  30. } else if (rank == 2) {
  31. }
  32. MPI_Finalize();
  33. }