Crypto holds info parsed from /proc/crypto.
| 25 | |
| 26 | // Crypto holds info parsed from /proc/crypto. |
| 27 | type Crypto struct { |
| 28 | Alignmask *uint64 |
| 29 | Async bool |
| 30 | Blocksize *uint64 |
| 31 | Chunksize *uint64 |
| 32 | Ctxsize *uint64 |
| 33 | Digestsize *uint64 |
| 34 | Driver string |
| 35 | Geniv string |
| 36 | Internal string |
| 37 | Ivsize *uint64 |
| 38 | Maxauthsize *uint64 |
| 39 | MaxKeysize *uint64 |
| 40 | MinKeysize *uint64 |
| 41 | Module string |
| 42 | Name string |
| 43 | Priority *int64 |
| 44 | Refcnt *int64 |
| 45 | Seedsize *uint64 |
| 46 | Selftest string |
| 47 | Type string |
| 48 | Walksize *uint64 |
| 49 | } |
| 50 | |
| 51 | var cryptoFile = "crypto" |
| 52 |
nothing calls this directly
no outgoing calls
no test coverage detected