在我的项目中,我有兴趣使用 Bit-slice 方法在 GPU 上为 HPC 应用程序进行 AES 批量加密。在这方面,我找到了很多论文,讨论使用Lookup Table approach
. 我没有找到任何讨论在 GPU 上使用Bitslice approach
. Jason Yang 和 James Goodman发表了一篇题为“ Symmetric Key Cryptography on Modern Graphics Hardware
”的论文,讨论了用于密钥搜索应用的 GPU 上 AES 和 DES 的 Bitslice 实现。
一篇名为“ Fast, Scalable and Secure encryption on GPU
”的论文提到,Yang 的上述 Bitslice 实现需要大量依赖于输入的预处理,因此完全不适合 HPC 应用。使用 Bitslice 方法在 GPU 上进行 AES 批量加密似乎没有好处。
任何人都可以请解释并向我保证whether bulk encryption on GPU using Bitslice approach is possible or not
吗?
提前致谢!