|
24 | 24 | { .crypto_type = CRYPTO_AEAD, .type = "aead", .name = "rfc4106(gcm(aes))", .block_size = 1, .max_auth_size = 16, .iv_size = 8 }, |
25 | 25 | { .crypto_type = CRYPTO_AEAD, .type = "aead", .name = "rfc4309(ccm(aes))", .block_size = 1, .max_auth_size = 16, .iv_size = 8 }, |
26 | 26 | { .crypto_type = CRYPTO_AEAD, .type = "aead", .name = "rfc4543(gcm(aes))", .block_size = 1, .max_auth_size = 16, .iv_size = 8 }, |
| 27 | +{ .crypto_type = CRYPTO_AHASH, .type = "ahash", .name = "hmac(rmd160)", .block_size = 64, .digest_size = 20 }, |
| 28 | +{ .crypto_type = CRYPTO_AHASH, .type = "ahash", .name = "hmac(sha3-384)", .block_size = 104, .digest_size = 48 }, |
| 29 | +{ .crypto_type = CRYPTO_AHASH, .type = "ahash", .name = "hmac(sha3-512)", .block_size = 72, .digest_size = 64 }, |
| 30 | +{ .crypto_type = CRYPTO_AHASH, .type = "ahash", .name = "hmac(streebog256)", .block_size = 64, .digest_size = 32 }, |
| 31 | +{ .crypto_type = CRYPTO_AHASH, .type = "ahash", .name = "hmac(streebog512)", .block_size = 64, .digest_size = 64 }, |
27 | 32 | { .crypto_type = CRYPTO_AHASH, .type = "ahash", .name = "ghash", .block_size = 16, .digest_size = 16 }, |
28 | 33 | { .crypto_type = CRYPTO_AKCIPHER, .type = "akcipher", .name = "ecrdsa" }, |
29 | 34 | { .crypto_type = CRYPTO_AKCIPHER, .type = "akcipher", .name = "rsa" }, |
|
50 | 55 | { .crypto_type = CRYPTO_RNG, .type = "rng", .name = "fips(ansi_cprng)" }, |
51 | 56 | { .crypto_type = CRYPTO_RNG, .type = "rng", .name = "jitterentropy_rng" }, |
52 | 57 | { .crypto_type = CRYPTO_RNG, .type = "rng", .name = "stdrng" }, |
| 58 | +{ .crypto_type = CRYPTO_SHASH, .type = "shash", .name = "cbcmac(aes)", .block_size = 16, .digest_size = 16 }, |
| 59 | +{ .crypto_type = CRYPTO_SHASH, .type = "shash", .name = "cbcmac(sm4)", .block_size = 16, .digest_size = 16 }, |
53 | 60 | { .crypto_type = CRYPTO_SHASH, .type = "shash", .name = "blake2b-160", .block_size = 128, .digest_size = 20 }, |
54 | 61 | { .crypto_type = CRYPTO_SHASH, .type = "shash", .name = "blake2b-256", .block_size = 128, .digest_size = 32 }, |
55 | 62 | { .crypto_type = CRYPTO_SHASH, .type = "shash", .name = "blake2b-384", .block_size = 128, .digest_size = 48 }, |
|
0 commit comments