github.com/Ptt-official-app/go-bbs@v0.12.0/crypt/types.go (about) 1 package crypt 2 3 type desCBlock [8]uint8 4 5 //desKeySchedule is used for uint32-computation. 6 //not-sure how to have *[32]uint32 pointed to [16][8]uint8 7 //set desKeySchedule directly to [32]uint32 8 type desKeySchedule [32]uint32 // 16 * 8 = 128 ([16]desCBlock)