{"id":22886447,"url":"https://github.com/willdev12/rjson","last_synced_at":"2026-04-11T22:03:02.532Z","repository":{"id":182937895,"uuid":"656283770","full_name":"WillDev12/rJson","owner":"WillDev12","description":"Encryptable Json file format for .NET projects!","archived":false,"fork":false,"pushed_at":"2023-07-23T02:47:09.000Z","size":34,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-01T01:33:16.206Z","etag":null,"topics":["csharp","csharp-library","data","dotnet","json","json-data","json-plugin","variables","vbdotnet","vbnet"],"latest_commit_sha":null,"homepage":"https://nuget.org/packages/rJson","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/WillDev12.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-06-20T16:18:22.000Z","updated_at":"2023-06-26T17:44:30.000Z","dependencies_parsed_at":"2025-03-31T18:44:59.975Z","dependency_job_id":"d70c9c0b-28c6-44ba-ab91-e1cea26f28f9","html_url":"https://github.com/WillDev12/rJson","commit_stats":null,"previous_names":["willdev12/rjson"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/WillDev12/rJson","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WillDev12%2FrJson","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WillDev12%2FrJson/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WillDev12%2FrJson/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WillDev12%2FrJson/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/WillDev12","download_url":"https://codeload.github.com/WillDev12/rJson/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WillDev12%2FrJson/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31696743,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-11T21:17:31.016Z","status":"ssl_error","status_checked_at":"2026-04-11T21:17:24.556Z","response_time":54,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["csharp","csharp-library","data","dotnet","json","json-data","json-plugin","variables","vbdotnet","vbnet"],"created_at":"2024-12-13T20:18:48.579Z","updated_at":"2026-04-11T22:03:02.501Z","avatar_url":"https://github.com/WillDev12.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\u003cimg src=\"json-4.png\" width=\"200\" height=\"200\"\u003e\u003c/p\u003e\n\n\u003ch1 align=\"center\"\u003erJson\u003c/h1\u003e\n\n\u003cp align=\"center\"\u003e\n\u003cimg src=\"https://img.shields.io/github/followers/WillDev12?label=follow%20my%20github\u0026logo=github\u0026style=for-the-badge\"\u003e\n\u003cimg src=\"https://img.shields.io/github/stars/WillDev12/rJson?style=for-the-badge\"\u003e\n\u003cimg src=\"https://img.shields.io/github/forks/WillDev12/rJson?style=for-the-badge\"\u003e\n\u003cimg src=\"https://img.shields.io/github/watchers/WillDev12/rJson?style=for-the-badge\"\u003e\n\u003c/p\u003e\n\n\u003cdetails\u003e\n\u003csummary\u003eWhat is this?\u003c/summary\u003e\n\u003cbr\u003e\nrJson is a powerful VS C# Library that allows you to pass encrypted data to and from files.\n\u003cbr\u003e\n\u003c/details\u003e\n\n\u003cdetails\u003e\n\u003csummary\u003eHow to use\u003c/summary\u003e\n\u003cbr\u003e\nTo start, simply prime with the following:\n\n``` c#\nusing rJson;\n\nrJs rJs = new rJs;\n```\n\nYou can then transfer variables like so:\n\n``` c#\nvar yourStuff = rJs.New(\"value1=hello,value2=world,password=123\", null); \n// If you would like to send your data to a file, simply write the filepath\n// in place for null.\n```\n\nNow, parse and grab some data!\n``` c#\nvar parsed = rJs.parse(yourStuff, null);\n// Here you can leave one or the other null.  As for the first parameter,\n// that is for if you want to parse in-program rJson as shown, otherwise,\n// swap the two variables but instead replace `yourStuff` with a filepath.\n\nConsole.WriteLine(rJs.getVar(parsed, \"value1\")); // will return \"hello\"\n```\n\u003c/details\u003e\n\n\u003cdetails\u003e\n\u003csummary\u003eOwner\u003c/summary\u003e\n\u003cbr\u003e\n\n```\nWillDev12 (WillDevv12)\n```\n\u003c/details\u003e\n\n\u003cdetails\u003e\n\u003csummary\u003eLicense\u003c/summary\u003e\n\u003cbr\u003e\n\n```\nMIT License\n```\nThis project is open source and free to edit.\n\n\u003c/details\u003e\n\n\u003ca href=\"https://www.nuget.org/packages/rJson\"\u003e\n    \u003cimg src=\"http://md-announcements.vercel.app/api?type=horizontal\u0026theme=yellow\u0026text=Be%20sure%20to%20check%20out%20our%20Nuget%20page!\u0026background=true\" style=\"width: 100%;\"\u003e\u003c/img\u003e\n\u003c/a\u003e\n\n# Like content like this?\n\nCheck out my [profile](https://github.com/WillDev12) or share it! (this means a lot to me)\n\n```\nhttps://github.com/WillDev12\nhttps://WillDev12.github.io\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwilldev12%2Frjson","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwilldev12%2Frjson","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwilldev12%2Frjson/lists"}