0Pricing
Electron Desktop App Development · درس

توقيع الشيفرة والتوثيق

افهم أهمية توقيع الشيفرة لنظام Windows والتوثيق لنظام macOS لضمان ثقة المستخدم والامتثال للمتطلبات الأمنية

توقيع الشيفرة والتوثيق درس مجاني في Electron Desktop App Development على CoddyKit. هذا هو الدرس 2 من أصل 4. يمكنك قراءة الدرس كاملاً أدناه مجاناً — ثم تمرن عليه مباشرة في المتصفح باستخدام محرر أكواد مدمج ومدرس ذكاء اصطناعي متاح 24/7. هذا الدرس جزء من مسار التعلم في Electron Desktop App Development، وتقدمك يتزامن عبر الويب وتطبيق CoddyKit. تتضمن دورة Electron Desktop App Development 4 دروس في المجموع.

بعض أجزاء هذا الدرس لم تُترجم بعد وتظهر باللغة الإنجليزية.

Building Trust with Code Signing

When you distribute your Electron app, users need to trust it. Operating systems like Windows and macOS have built-in security features to protect users from malicious software.

Code signing and notarization are essential steps to prove your app's authenticity and integrity, ensuring users feel safe installing it.

What is Code Signing?

Code signing is like attaching a digital signature to your application. It uses a cryptographic certificate issued by a trusted Certificate Authority (CA).

  • Authenticity: Verifies the app comes from you, the publisher.
  • Integrity: Confirms the app hasn't been tampered with since you signed it.

If the signature is invalid or altered, the OS will warn the user.

Trust on Windows

On Windows, unsigned applications often trigger security warnings like "Windows protected your PC" (SmartScreen filter).

A valid code signature helps your app pass these checks, giving users confidence and reducing installation friction. It also allows your app to be installed without extra administrator prompts for some operations.

Signing Windows Executables

To sign your Windows Electron app, you'll need a Code Signing Certificate. This is typically a PFX file containing your private key and certificate chain.

Tools like electron-builder simplify this process by letting you specify your certificate details in the configuration.

{
  "build": {
    "win": {
      "target": "nsis",
      "signingHashAlgorithms": ["sha256"],
      "signAndEditExecutable": true
    },
    "cscKeyPassword": "your-cert-password",
    "cscInstallerPassword": "your-cert-password",
    "cscLink": "path/to/your/certificate.pfx"
  }
}

Time-Stamping Your Signature

When code signing, it's crucial to also time-stamp your signature. This ensures that even if your signing certificate expires, the signature remains valid because it was signed when the certificate was active.

Most signing tools, including electron-builder, can automatically add a time-stamp server URL to your signing process.

macOS Notarization Explained

For macOS, Apple introduced Notarization as an additional security check. It's an automated service that scans your app for malicious content and code signature issues.

Think of it as Apple giving your app a "seal of approval" before it can run smoothly on macOS Catalina and later.

Meeting Apple's Gatekeeper

macOS's security feature, Gatekeeper, blocks unsigned or unnotarized apps from running by default. Users will see a warning that the app "cannot be opened because the developer cannot be verified."

Notarization allows your app to pass Gatekeeper checks without annoying users or requiring them to bypass security settings manually.

Getting Ready for Notarization

To notarize your Electron app, you need:

  • An Apple Developer ID.
  • An app-specific password for your Apple ID.
  • Your app must be signed with a Developer ID Application certificate.
  • Hardened Runtime enabled (a security feature).

electron-builder handles most of these configurations for you.

Notarizing with electron-builder

electron-builder simplifies the notarization process. You configure your Apple ID credentials and it handles uploading your app to Apple's notarization service.

It waits for the notarization to complete and then "staples" the notarization ticket to your app bundle.

{
  "build": {
    "mac": {
      "hardenedRuntime": true,
      "gatekeeperAssess": false,
      "entitlementsInherit": "build/entitlements.mac.plist",
      "entitlements": "build/entitlements.mac.plist"
    },
    "afterSign": "electron-builder-notarize"
  }
}

Secure & Automated Signing

Always keep your signing certificates and private keys secure. Treat them like sensitive passwords.

Integrate code signing and notarization into your Continuous Integration/Continuous Deployment (CI/CD) pipeline to automate the process and ensure every build is properly signed and notarized.

Check Your Knowledge

Which statements accurately describe the purpose or requirements of code signing and macOS notarization?

Recap: Trust & Security

In this lesson, we learned about the critical role of code signing for Windows and notarization for macOS in distributing your Electron applications.

These processes build user trust, ensure app integrity, and help your app run smoothly on target operating systems by satisfying their built-in security requirements.

الأسئلة الشائعة

هل درس «توقيع الشيفرة والتوثيق» مجاني؟

نعم — نص درس «توقيع الشيفرة والتوثيق» كامل متاح مجاناً هنا على الويب. لتمرينه بشكل تفاعلي (محرر أكواد مدمج ومدرس ذكاء اصطناعي متاح 24/7) وفتح باقي دورة Electron Desktop App Development، انتقل إلى CoddyKit PRO. تتضمن دورة Electron Desktop App Development 4 دروس في المجموع.

ماذا ستتعلم في «توقيع الشيفرة والتوثيق»؟

افهم أهمية توقيع الشيفرة لنظام Windows والتوثيق لنظام macOS لضمان ثقة المستخدم والامتثال للمتطلبات الأمنية تتمرن على Electron Desktop App Development مع أكواد عملية تشغلها مباشرة في المتصفح، ومدرس ذكاء اصطناعي متاح 24/7 يجيب على أسئلتك أثناء عملك.

هل أحتاج إلى خبرة سابقة لأبدأ Electron Desktop App Development؟

لا تُشترط خبرة سابقة. Electron Desktop App Development على CoddyKit منظم للمبتدئين حتى المتقدمين، لذا يمكنك البدء من هنا أو من البداية والتقدم بسرعتك الخاصة. هذا هو الدرس 2 من أصل 4.

كم من الوقت يستغرق درس «توقيع الشيفرة والتوثيق»؟

معظم دروس CoddyKit تستغرق حوالي 5–10 دقائق. كل منها موجز وتفاعلي، لذا تحرز تقدماً مستمراً وتستأنف من حيث توقفت عبر الويب والتطبيق.

هل يمكنني كتابة وتشغيل أكواد في درس Electron Desktop App Development هذا؟

نعم. كل درس في Electron Desktop App Development يتضمن محرر أكواد مدمج، لذا تكتب وتشغل أكواداً حقيقية مباشرة في متصفحك وتحصل على تعليقات فورية من الذكاء الاصطناعي — بدون إعداد محلي.

جميع الدروس في هذه الدورة

  1. الحزم متعددة المنصات
  2. توقيع الشيفرة والتوثيق
  3. التوزيع عبر متاجر التطبيقات
  4. أتمتة الإصدارات باستخدام CI/CD
← العودة إلى Electron Desktop App Development