algorithmOid property

List<int> get algorithmOid

Gets the algorithm OID. Throws if not decrypted.

Implementation

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