| 1973 | struct BCryptRC2Algorithm : public BCryptKeyAlgorithm<BCryptRC2Algorithm, BCryptKey, CRYPT_MODE_CBC, 8> |
| 1974 | { |
| 1975 | BCryptRC2Algorithm() |
| 1976 | { |
| 1977 | // 微软BCrypt的RC2默认为128bits |
| 1978 | uEffectiveKeyBitCount = 128; |
| 1979 | } |
| 1980 | }; |
| 1981 | |
| 1982 | struct BCryptRC4Algorithm : public BCryptKeyAlgorithm<BCryptRC4Algorithm, BCryptKey, 0, 1> |
nothing calls this directly
no outgoing calls
no test coverage detected