Commit 90174f9d authored by uniqueNullptr2's avatar uniqueNullptr2
Browse files

ignore tests for seed on ossl300

parent d16e5892
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -1582,7 +1582,7 @@ mod tests {
    }

    #[test]
    #[cfg(not(osslconf = "OPENSSL_NO_SEED"))]
    #[cfg(not(any(osslconf = "OPENSSL_NO_SEED", ossl300)))]
    fn test_seed_cbc() {
        let pt = "5363686f6b6f6c6164656e6b756368656e0a";
        let ct = "c2edf0fb2eb11bf7b2f39417a8528896d34b24b6fd79e5923b116dfcd2aba5a4";
@@ -1593,7 +1593,7 @@ mod tests {
    }

    #[test]
    #[cfg(not(osslconf = "OPENSSL_NO_SEED"))]
    #[cfg(not(any(osslconf = "OPENSSL_NO_SEED", ossl300)))]
    fn test_seed_cfb128() {
        let pt = "5363686f6b6f6c6164656e6b756368656e0a";
        let ct = "71d4d25fc1750cb7789259e7f34061939a41";
@@ -1603,7 +1603,7 @@ mod tests {
        cipher_test(super::Cipher::seed_cfb128(), pt, ct, key, iv);
    }
    #[test]
    #[cfg(not(osslconf = "OPENSSL_NO_SEED"))]
    #[cfg(not(any(osslconf = "OPENSSL_NO_SEED", ossl300)))]
    fn test_seed_ecb() {
        let pt = "5363686f6b6f6c6164656e6b756368656e0a";
        let ct = "0263a9cd498cf0edb0ef72a3231761d00ce601f7d08ad19ad74f0815f2c77f7e";
@@ -1613,7 +1613,7 @@ mod tests {
        cipher_test(super::Cipher::seed_ecb(), pt, ct, key, iv);
    }
    #[test]
    #[cfg(not(osslconf = "OPENSSL_NO_SEED"))]
    #[cfg(not(any(osslconf = "OPENSSL_NO_SEED", ossl300)))]
    fn test_seed_ofb() {
        let pt = "5363686f6b6f6c6164656e6b756368656e0a";
        let ct = "71d4d25fc1750cb7789259e7f34061930afd";