set25519 function

void set25519(
  1. List<int> r,
  2. List<int> a
)

Implementation

void set25519(final List<int> r, final List<int> a) {
  for (int i = 0; i < 16; ++i) {
    r[i] = a[i];
  }
}