.NET MAUI & Storage, Part 1 - Secure Storage

แชร์
ฝัง
  • เผยแพร่เมื่อ 8 ก.ย. 2024
  • Do you need to save sensitive data in your apps? In this video, Daniel will show you how to do that in a secure way.

ความคิดเห็น • 23

  • @avh2502
    @avh2502 10 หลายเดือนก่อน

    Thanks for this. I couldn't get this working until I watched your video and saw that the new Entitlements file needs to be set to "Copy to the Output Folder".

  • @jeanhibbert
    @jeanhibbert ปีที่แล้ว

    Great video - thank you!

  • @radoslavatanasov8846
    @radoslavatanasov8846 2 ปีที่แล้ว

    Amazing video!

  • @arielpenag
    @arielpenag 2 ปีที่แล้ว

    Great Video! interesting , would you make a video storing Data in a cloud services SQL or ANY REST API ENDPOINT , SQL or NOSQL .

  • @moawadabdelbasset9896
    @moawadabdelbasset9896 2 ปีที่แล้ว

    thanks for you can you make example for piker like combobox with crud

  • @bbhoodsta
    @bbhoodsta 2 ปีที่แล้ว

    Great Video! I see that you used [ObservableProperty] for Commands (save & show). Shouldn't it be [RelayCommand] or is there no difference?

    • @DanielHindrikes
      @DanielHindrikes  2 ปีที่แล้ว +1

      I have not study the code in detail, but in general they do the same. Command is from MAUI and RelayCommand from CommunityToolkit.Mvvm.

  • @LeonelRc
    @LeonelRc ปีที่แล้ว +1

    I tried to do the same for MacCatalys and the SecureStorage doesn't work

    • @DanielHindrikes
      @DanielHindrikes  ปีที่แล้ว

      Do you have entitlements?

    • @LeonelRc
      @LeonelRc ปีที่แล้ว

      @@DanielHindrikes yes, I did but I'am doing the app is for desktop, I just get this error "Object reference not set to an instance of an object"

  • @hamzaougui6751
    @hamzaougui6751 6 หลายเดือนก่อน

    After adding Entitlements.plist file i got error building : could not find any provisioning profiles .. in Visual Studio Windows

    • @DanielHindrikes
      @DanielHindrikes  6 หลายเดือนก่อน

      If I remember right it is needed when you add Entitlements. Requirement from Apple.

    • @hamzaougui6751
      @hamzaougui6751 6 หลายเดือนก่อน

      @@DanielHindrikes so i will need apple developer account subscription for this purpose ?

  • @madraven37
    @madraven37 ปีที่แล้ว

    I use this API, seems that email can't be save here or when I store Large text. I also read the documentation that this is the limitation. I want to use the remember credential on my App and storing the email in SecureStorage is one way of doing that, but because of the limitation, I can't continue with this feature. Do you have any other alternatives than SecureStorage that can store larg text?

    • @DanielHindrikes
      @DanielHindrikes  ปีที่แล้ว +1

      Save the credentials in secure storage and the other data in som other places. I have a video about storing application data and one about LiteDB that you can take a look at.

    • @DanielHindrikes
      @DanielHindrikes  ปีที่แล้ว +2

      .NET MAUI & Storage, Part 3 - Where to save application data
      th-cam.com/video/3xqIXS1SBaU/w-d-xo.html

    • @DanielHindrikes
      @DanielHindrikes  ปีที่แล้ว +1

      .NET MAUI - NoSQL with LiteDB
      th-cam.com/video/m03IjT1b2Hs/w-d-xo.html

    • @madraven37
      @madraven37 ปีที่แล้ว

      @@DanielHindrikes Thank you sir, much appreciated...

  • @davidbrenchley
    @davidbrenchley 2 ปีที่แล้ว

    While secure storage is better than unsecured storage, not data that is transmitted to the device can be considered "secure". It is best to keep as much secure information as possible on the server.

    • @DanielHindrikes
      @DanielHindrikes  2 ปีที่แล้ว +2

      It depends on the type of data. Some data you don't want to share with a server. If you need to save passwords for example. Or if you need to save an access token on device. iOS Keychain is the most secure way to store that type on a iOS device.

    • @davidbrenchley
      @davidbrenchley 2 ปีที่แล้ว

      @@DanielHindrikes yes there is data that needs to be on the device, but even with iOS keys, it still can't be considered truly secure.

    • @DanielHindrikes
      @DanielHindrikes  2 ปีที่แล้ว +4

      What is truly secure?