Lines Matching refs:find
330 if (transform.find("/ECB") != string::npos) { in getBlockMode()
332 } else if (transform.find("/CBC") != string::npos) { in getBlockMode()
334 } else if (transform.find("/CTR") != string::npos) { in getBlockMode()
336 } else if (transform.find("/GCM") != string::npos) { in getBlockMode()
343 if (transform.find("/PKCS7") != string::npos) { in getPadding()
345 } else if (transform.find("/PSS") != string::npos) { in getPadding()
347 } else if (transform.find("/OAEP") != string::npos) { in getPadding()
349 } else if (transform.find("/PKCS1") != string::npos) { in getPadding()
351 } else if (sign && transform.find("RSA") != string::npos) { in getPadding()
359 if (transform.find("AES") != string::npos) { in getAlgorithm()
361 } else if (transform.find("Hmac") != string::npos) { in getAlgorithm()
363 } else if (transform.find("DESede") != string::npos) { in getAlgorithm()
365 } else if (transform.find("RSA") != string::npos) { in getAlgorithm()
367 } else if (transform.find("EC") != string::npos) { in getAlgorithm()
375 if (transform.find("MD5") != string::npos) { in getDigest()
377 } else if (transform.find("SHA1") != string::npos || in getDigest()
378 transform.find("SHA-1") != string::npos) { in getDigest()
380 } else if (transform.find("SHA224") != string::npos) { in getDigest()
382 } else if (transform.find("SHA256") != string::npos) { in getDigest()
384 } else if (transform.find("SHA384") != string::npos) { in getDigest()
386 } else if (transform.find("SHA512") != string::npos) { in getDigest()
388 } else if (transform.find("RSA") != string::npos && in getDigest()
389 transform.find("OAEP") != string::npos) { in getDigest()