I have sqllite database and need to crypt/encrypt it, data inside database should not be available for everyone...
My application is written in Xamarin, After research I found out SQLCipher component for android, but also there is free version in github... Is it possible to use this for Xamarin, with binding libraries, or something like that
While in theory this is possible you have to consider whether it is actually worth the effort to create the necessary bindings. If you look at the component on the Xamarin component store there is also a comment suggesting there is some differences between the free binaries available on the SQLCipher site versus what is included in the component - this should be a cause for concern.
That been said, the following link should give you the background to get started:
Android Wrappers
Good luck