- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for decryptBlockGeneric (0.35 sec)
-
lib/fips140/v1.0.0.zip
encryptBlockAsm(c.rounds, &c.enc[0], &dst[0], &src[0]) } else { encryptBlockGeneric(&c.blockExpanded, dst, src) } } func decryptBlock(c *Block, dst, src []byte) { if supportsAES { decryptBlockAsm(c.rounds, &c.dec[0], &dst[0], &src[0]) } else { decryptBlockGeneric(&c.blockExpanded, dst, src) } } golang.org/fips140@v1.0.0/fips140/v1.0.0/aes/aes_generic.go // Copyright 2009 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE...
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Jan 29 15:10:35 UTC 2025 - 635K bytes - Viewed (0)