diff --git a/src/app/app.component.ts b/src/app/app.component.ts index 14852e4..6a5b19a 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -266,7 +266,7 @@ export class AppComponent implements OnInit { isDecryptable(res: any) { if (!res.defaultKID || res.defaultKID.length === 0) - return false; + return true; const keys = this.parseKeys(this.processingForm.value.keys); return keys.find(k => k.key.toLowerCase() === res.defaultKID.toLowerCase()); }