Gets the algorithm OID. Throws if not decrypted.
List<int> get algorithmOid { if (!isDecrypted()) { throw StateError('Entry not decrypted. Call decrypt() first.'); } return keyAlgorithmOid!; }