Does Jenkins credential manager support AES-256 encryption?

Does Jenkins credential manager support AES-256 encryption? I could see the documentation reference for AES-128 and would like to know, does it still use AES-128?

Thanks,
Bala

Search · getCipher · GitHub shows plenty of Secret.getCipher(“AES”) calls. Java Security Standard Algorithm Names says “AES” supports “keys of 128, 192, and 256 bits”. However jenkins/CryptoConfidentialKey.java at e27b310065b3c036b5fc9d123f1d1d99d3058c00 · jenkinsci/jenkins · GitHub hardcodes 128 bits as the key size. I’m not sure the credential manager uses this code, though.

Thanks @kon for your response.