.NET MAUI & Storage, Part 1 - Secure Storage

Поділитися
Вставка
  • Опубліковано 18 гру 2024

КОМЕНТАРІ • 24

  • @avh2502
    @avh2502 Рік тому

    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".

  • @nqaiser
    @nqaiser Місяць тому

    Is there a way to create a private key inside the secure storage that is unexportable and use that for signing/decrypting data. The ability to extract data from secure storage does bring it to application memory and might help someone else harvest it

  • @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.

  • @moawadabdelbasset9896
    @moawadabdelbasset9896 2 роки тому

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

  • @jeanhibbert
    @jeanhibbert Рік тому

    Great video - thank you!

  • @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"

  • @madraven37
    @madraven37 2 роки тому

    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  2 роки тому +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 роки тому +2

      .NET MAUI & Storage, Part 3 - Where to save application data
      ua-cam.com/video/3xqIXS1SBaU/v-deo.html

    • @DanielHindrikes
      @DanielHindrikes  2 роки тому +1

      .NET MAUI - NoSQL with LiteDB
      ua-cam.com/video/m03IjT1b2Hs/v-deo.html

    • @madraven37
      @madraven37 2 роки тому

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

  • @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 .

  • @hamzaougui6751
    @hamzaougui6751 10 місяців тому

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

    • @DanielHindrikes
      @DanielHindrikes  10 місяців тому

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

    • @hamzaougui6751
      @hamzaougui6751 10 місяців тому

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

  • @radoslavatanasov8846
    @radoslavatanasov8846 2 роки тому

    Amazing video!

  • @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?