Esempio n. 1
0
 public void Transform(string fileName) => ChaCha.Transform(m_state, 20UL, fileName);
Esempio n. 2
0
 public void Transform(Stream stream) => ChaCha.Transform(m_state, 20UL, stream);
Esempio n. 3
0
 public void Transform(byte[] data) => ChaCha.Transform(m_state, 20UL, data);
Esempio n. 4
0
 public void Transform(Stream source, Stream destination) => ChaCha.Transform(m_state, 20UL, source, destination);