Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for roundKeysSize (0.07 sec)

  1. lib/fips140/v1.0.0.zip

    keys, 14 rounds, and uses 15 128-bit round keys // (15×128÷32 = 60 32-bit words). aes128KeySize = 16 aes192KeySize = 24 aes256KeySize = 32 aes128Rounds = 10 aes192Rounds = 12 aes256Rounds = 14 ) // roundKeysSize returns the number of uint32 of c.end or c.dec that are used. func (b *blockExpanded) roundKeysSize() int { return (b.rounds + 1) * (128 / 32) } type KeySizeError int func (k KeySizeError) Error() string { return "crypto/aes: invalid key size " + strconv.Itoa(int(k)) } // New creates and returns...
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Jan 29 15:10:35 UTC 2025
    - 635K bytes
    - Viewed (0)
Back to top