Oracle 19.24 + ASO + DirectMode

Oracle 19.24 + ASO + DirectMode

Hi

I just applied Oracle 19.24 (Security Patch July 2024) to my database and the direct mode no longer work

If I disable native encryption it works.

Test case:

$conn = New-Object Devart.Data.Oracle.OracleConnection('Direct=true;User Id=test;Password=***;Port=1521;Service Name=service01.example.com; Server=srv01.example.com');
$conn.open()
$com=$conn.CreateCommand();
$com.CommandText='select sysdate from dual';
$com.ExecuteScalar();


1) 19.23 with aso
sqlnet.ora server : SQLNET.ENCRYPTION_SERVER = requested

output: Montag, 12. August 2024 09:15:52

2) 19.24 without aso
sqlnet.ora server : SQLNET.ENCRYPTION_SERVER = accepted


output: Montag, 12. August 2024 09:25:10

3) 19.24 with aso
sqlnet.ora server : SQLNET.ENCRYPTION_SERVER = requested

Exception calling "Open" with "0" argument(s): "Invalid bytes count"
At line:1 char:1
+ $conn.open()
+ ~~~~~~~~~~~~
    + CategoryInfo          : NotSpecified: (:) [], MethodInvocationException
    + FullyQualifiedErrorId : ArithmeticException

I already created a service request by Oracle. Is there anything to do on the driver?

Thanks
Laurent