@@ -453,11 +453,11 @@ private module CryptographyModel {
453453 *
454454 * See https://cryptography.io/en/latest/hazmat/primitives/asymmetric/rsa.html#cryptography.hazmat.primitives.asymmetric.rsa.generate_private_key
455455 */
456- class CryptographyRSAGeneratePrivateKeyCall extends Cryptography:: PublicKey:: KeyGeneration:: RSARange ,
456+ class CryptographyRsaGeneratePrivateKeyCall extends Cryptography:: PublicKey:: KeyGeneration:: RsaRange ,
457457 DataFlow:: CfgNode {
458458 override CallNode node ;
459459
460- CryptographyRSAGeneratePrivateKeyCall ( ) {
460+ CryptographyRsaGeneratePrivateKeyCall ( ) {
461461 node .getFunction ( ) =
462462 cryptography:: hazmat:: primitives:: asymmetric:: rsa:: generate_private_key ( ) .asCfgNode ( )
463463 }
@@ -472,11 +472,11 @@ private module CryptographyModel {
472472 *
473473 * See https://cryptography.io/en/latest/hazmat/primitives/asymmetric/dsa.html#cryptography.hazmat.primitives.asymmetric.dsa.generate_private_key
474474 */
475- class CryptographyDSAGeneratePrivateKeyCall extends Cryptography:: PublicKey:: KeyGeneration:: DSARange ,
475+ class CryptographyDsaGeneratePrivateKeyCall extends Cryptography:: PublicKey:: KeyGeneration:: DsaRange ,
476476 DataFlow:: CfgNode {
477477 override CallNode node ;
478478
479- CryptographyDSAGeneratePrivateKeyCall ( ) {
479+ CryptographyDsaGeneratePrivateKeyCall ( ) {
480480 node .getFunction ( ) =
481481 cryptography:: hazmat:: primitives:: asymmetric:: dsa:: generate_private_key ( ) .asCfgNode ( )
482482 }
@@ -491,11 +491,11 @@ private module CryptographyModel {
491491 *
492492 * See https://cryptography.io/en/latest/hazmat/primitives/asymmetric/ec.html#cryptography.hazmat.primitives.asymmetric.ec.generate_private_key
493493 */
494- class CryptographyECGeneratePrivateKeyCall extends Cryptography:: PublicKey:: KeyGeneration:: ECCRange ,
494+ class CryptographyEcGeneratePrivateKeyCall extends Cryptography:: PublicKey:: KeyGeneration:: EccRange ,
495495 DataFlow:: CfgNode {
496496 override CallNode node ;
497497
498- CryptographyECGeneratePrivateKeyCall ( ) {
498+ CryptographyEcGeneratePrivateKeyCall ( ) {
499499 node .getFunction ( ) =
500500 cryptography:: hazmat:: primitives:: asymmetric:: ec:: generate_private_key ( ) .asCfgNode ( )
501501 }
0 commit comments