aes.h Skip to content Why GitHub? Team Enterprise Explore Marketplace Pricing Sign inSign up xiaofeng-ling/ncmdump forked fromanonymous5l/ncmdump Watch1 Star0 Fork339 Code Pull requests Actions Projects Security Insights More master ncmdump/aes.h...
aes.h Skip to content Why GitHub? Team Enterprise Explore Marketplace Pricing Sign inSign up WentaoHao/ncmdump forked fromanonymous5l/ncmdump Watch0 Star0 Fork339 Code Pull requests Actions Projects Security Insights More master ncmdump/aes.h...
AES::AES(const unsigned char *key){ setKey(key); keyExpansion(); }void AES::setKey(const unsigned char key[]){ mNb = 4; mNk = 4; mNr = 10; memcpy(mKey, key, mNk * 4); }void AES::keyExpansion() { //the first mNk words will be filled in mW derictly ...
Why GitHub? Team Enterprise Explore Marketplace Pricing Sign inSign up Xitems/ncmdump forked fromanonymous5l/ncmdump Watch0 Star0 Fork339 Code Pull requests Actions Projects Security Insights More master ncmdump/aes.h Go to file Copy path ...
void AES::setKey(const unsigned char key[]){ mNb = 4; mNk = 4; mNr = 10; memcpy(mKey, key, mNk * 4); }void AES::keyExpansion() { //the first mNk words will be filled in mW derictly for (int i = 0; i < mNk; i++){...
}void AES::subBytes(unsigned char state[][4]) { for (int i = 0; i < 4; i++){ for (int j = 0; j < 4; j++){ state[i][j] = sBox[state[i][j]]; } } }void AES::shiftRows(unsigned char state[][4]) { unsigned char t[4];...
Why GitHub? Team Enterprise Explore Marketplace Pricing Sign inSign up cyberdong/ncmdump forked fromanonymous5l/ncmdump Watch0 Star0 Fork339 Code Pull requests Actions Projects Security Insights More master ncmdump/base64.h Go to file Copy path ...
master 1Branch2Tags Code Folders and files Name Last commit message Last commit date Latest commit qaralotte Merge pull requestqaralotte#1from notsyncing/master May 9, 2022 233e68f·May 9, 2022 History 8 Commits lib Auto add music tag ...
Golang 版本的网易云音乐 NCM 文件格式转换. Contribute to momaek/ncmdump.go development by creating an account on GitHub.
This branch is up to date with iceboy233/ncmdump:master. Contribute Latest commit iceboy233 optimize memory usage 9db74b1 on Dec 21, 2021 Git stats 54 commits Files Failed to load latest commit information. Type Name Latest commit message Commit time ncmdump .gitignore LICENSE ...