mirror of
				https://github.com/cuberite/polarssl.git
				synced 2025-11-03 20:22:59 -05:00 
			
		
		
		
	Merge branch 'mbedtls-1.3' into development
* mbedtls-1.3: Fix bug in pk_parse_key() Update generated file Conflicts: library/pkparse.c library/version_features.c
This commit is contained in:
		
						commit
						e1e5871a55
					
				@ -91,6 +91,8 @@ Features
 | 
				
			|||||||
     errors on use of deprecated functions.
 | 
					     errors on use of deprecated functions.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
Bugfix
 | 
					Bugfix
 | 
				
			||||||
 | 
					   * Fix bug in pk_parse_key() that caused some valid private EC keys to be
 | 
				
			||||||
 | 
					     rejected.
 | 
				
			||||||
   * Fix bug in Via Padlock support (found by Nikos Mavrogiannopoulos).
 | 
					   * Fix bug in Via Padlock support (found by Nikos Mavrogiannopoulos).
 | 
				
			||||||
   * Fix thread safety bug in RSA operations (found by Fredrik Axelsson).
 | 
					   * Fix thread safety bug in RSA operations (found by Fredrik Axelsson).
 | 
				
			||||||
   * Fix hardclock() (only used in the benchmarking program) with some
 | 
					   * Fix hardclock() (only used in the benchmarking program) with some
 | 
				
			||||||
 | 
				
			|||||||
@ -761,6 +761,9 @@ static int pk_parse_key_sec1_der( mbedtls_ecp_keypair *eck,
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    p += len;
 | 
					    p += len;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    pubkey_done = 0;
 | 
				
			||||||
 | 
					    if( p != end )
 | 
				
			||||||
 | 
					    {
 | 
				
			||||||
        /*
 | 
					        /*
 | 
				
			||||||
         * Is 'parameters' present?
 | 
					         * Is 'parameters' present?
 | 
				
			||||||
         */
 | 
					         */
 | 
				
			||||||
@ -814,6 +817,7 @@ static int pk_parse_key_sec1_der( mbedtls_ecp_keypair *eck,
 | 
				
			|||||||
            mbedtls_ecp_keypair_free( eck );
 | 
					            mbedtls_ecp_keypair_free( eck );
 | 
				
			||||||
            return( MBEDTLS_ERR_PK_KEY_INVALID_FORMAT + ret );
 | 
					            return( MBEDTLS_ERR_PK_KEY_INVALID_FORMAT + ret );
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if( ! pubkey_done &&
 | 
					    if( ! pubkey_done &&
 | 
				
			||||||
        ( ret = mbedtls_ecp_mul( &eck->grp, &eck->Q, &eck->d, &eck->grp.G,
 | 
					        ( ret = mbedtls_ecp_mul( &eck->grp, &eck->Q, &eck->d, &eck->grp.G,
 | 
				
			||||||
 | 
				
			|||||||
							
								
								
									
										
											BIN
										
									
								
								tests/data_files/ec_prv.noopt.der
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								tests/data_files/ec_prv.noopt.der
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							@ -146,6 +146,10 @@ Parse EC Key #1 (SEC1 DER)
 | 
				
			|||||||
depends_on:MBEDTLS_PEM_PARSE_C:MBEDTLS_ECP_C:MBEDTLS_ECP_DP_SECP192R1_ENABLED
 | 
					depends_on:MBEDTLS_PEM_PARSE_C:MBEDTLS_ECP_C:MBEDTLS_ECP_DP_SECP192R1_ENABLED
 | 
				
			||||||
pk_parse_keyfile_ec:"data_files/ec_prv.sec1.der":"NULL":0
 | 
					pk_parse_keyfile_ec:"data_files/ec_prv.sec1.der":"NULL":0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					Parse EC Key #1a (SEC1 DER, no optional part)
 | 
				
			||||||
 | 
					depends_on:POLARSSL_PEM_PARSE_C:POLARSSL_ECP_C:POLARSSL_ECP_DP_SECP256R1_ENABLED
 | 
				
			||||||
 | 
					pk_parse_keyfile_ec:"data_files/ec_prv.noopt.der":"NULL":0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
Parse EC Key #2 (SEC1 PEM)
 | 
					Parse EC Key #2 (SEC1 PEM)
 | 
				
			||||||
depends_on:MBEDTLS_PEM_PARSE_C:MBEDTLS_ECP_C:MBEDTLS_ECP_DP_SECP192R1_ENABLED
 | 
					depends_on:MBEDTLS_PEM_PARSE_C:MBEDTLS_ECP_C:MBEDTLS_ECP_DP_SECP192R1_ENABLED
 | 
				
			||||||
pk_parse_keyfile_ec:"data_files/ec_prv.sec1.pem":"NULL":0
 | 
					pk_parse_keyfile_ec:"data_files/ec_prv.sec1.pem":"NULL":0
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user