Questions tagged [argon]

Argon is a mobile web browser for iOS, and associated software suite, for creating augmented reality-enabled websites.

The Argon Project is research project at Georgia Tech. There have been two versions of Argon released for iOS (Argon at and Argon2 Isotope), and a third version is expected this year. Argon downloaded AR applications from web servers, created with a specialized version of KML called KARML. Argon2 adopted a more traditional approach to extending web functionality, exposing AR-specific APIs into Javascript, but otherwise allowing content to be created using the same technologies used to create other mobile websites. With Argon2, a javascript framework called argon.js was introduced, with the intent that this framework will eventually work on other web browsers as AR-specific technologies become more widely available.

Version 3 is currently in beta, and expected to be released this year. It will continue the shift toward cross-platform support of AR via the argon.js framework, and with version 3, the project will be open-sourced at http://argonjs.io

30 questions
0
votes
1 answer

Argon2id Hex to Hash

I'm migrating users from one user store to another. The user password info is stored in Argon2 hash. I have figured out all the inputs, I have the encoded hash but I cannot figure the steps between Hex Form and Encoded Form I have used this…
0
votes
0 answers

Laravel 7 Argon2 hashing not supported

I'm trying to use argon2id in my laravel application I changed the driver in hashing.php from 'driver' => 'bcrypt' to 'driver' => 'argon2id' then I tried run my seeders then it gave me an error Argon2 hashing not supported. Laravel version…
rinru
  • 141
  • 4
  • 19
0
votes
1 answer

Argon design not rendering in laravel. How to extract it from node modules using mix?

I have installed argon design system using npm. And inside the head tag, I have added links from the documentation. But I want to extract it from node modules using mix. And run in webpack so that it renders styles. Please, someone, help with a…
0
votes
2 answers

TYPO3 argon2 password hashes matches after server move partly not

After moving a TYPO3 v9.5.10 from one server to another, some fe/be_users who have allready an argon password hash, have a login problem. The generated hashes do not seem to match on the new server. If we reset the password within the backend to the…
FlorianX
  • 221
  • 1
  • 3
  • 7
0
votes
1 answer

Setting Argon2 algorithm type in Java

Argon2 by default uses Argon2id. How can I programatically set a different algorthm type in Java? I mean, how to mention my program should use Argon2i or Argon2d in Java? I wanted to encode a password. I am using Spring Security jar. Used the below…
0
votes
1 answer

Install argon2 in Docker image (problem with installing gcc)

right now I'm trying to setup argon2 in a docker image. Apparently I have to install gcc before (and I don't just want to install it on my local machine). My Dockerfile looks like this: FROM python:3.6-alpine RUN mkdir -p /usr/src/app WORKDIR…
Cal Blau
  • 117
  • 4
  • 14
0
votes
1 answer

Analog Input To Change RGB Color

I am setting up a rotary angle sensor for my analog changer. There is a digital display to show where we are within the range. What I am trying to do is create a color range with the analog range but are unable to figure out how to make the colors…
Ashham93
  • 33
  • 5
0
votes
1 answer

unable to render vuejs component after installing Argon Dashboard for laravel to my laravel project

i'm having active project and inside all the vuejs components are working fine , but when installed Argon Dashboard for laravel to my laravel project . My VueJs Components are not showing , i have added js/app.js to my layout/app.blade.php but…
0
votes
0 answers

Problems with PASSWORD_ARGON2I in PHP 7.3.6

I read that there is a problem with PHP 7.2 and if you want to use ARGON2 you need to compile php using –with-password-argon2 In my case I'm using PHP 7.3.6 php -v PHP 7.3.6 (cli) (built: Jun 22 2019 11:43:32) ( NTS ) Copyright (c) 1997-2018 The…
MGE
  • 803
  • 2
  • 12
  • 22
0
votes
2 answers

Argon.js/A-Frame: local coordinates from getEntityPose() are not relative to refereceFrame

I am attempting to use argon.js to convert lla coordinates to local coordinates from a predefined reference frame. The method that has been recommended to me (as I understand it) requires that I create a cesium entity from a set of lla's, and then…
crld
  • 105
  • 1
  • 6
0
votes
1 answer

How to get distance triggers working in argon.js and AFrame?

I'm trying to add distance triggers to an object in my ar-scene, following the code snippet on the project's github page. The following gives me errors in Argon.
dlgard
  • 17
  • 1
  • 4
0
votes
2 answers

How to do remote debugging with argon.js and Argon4?

Similar to remote debugging with iOS(using Safari) or Android(using Chrome), I'd like to do the same thing with Argon.
dlgard
  • 17
  • 1
  • 4
0
votes
1 answer

Argon - Decryption Issues of Vuforia License

I am using the Argon 3 web browser with Vuforia's image tracking. I've taken the license key of my Vuforia application and encrypted it with the GPG Keychain. I've included relevant snippets of my index.html and app.js files here. Whenever I…
noblerare
  • 10,277
  • 23
  • 78
  • 140
-2
votes
1 answer

Why the password is not hashed?

I'm using Argon2 to hash my password, this is my code: import { ForbiddenException, Injectable } from '@nestjs/common'; import { PrismaService } from 'src/prisma/prisma.service'; import { AuthDto } from './dto'; import * as argon from 'argon2'; …
Wahéb
  • 541
  • 1
  • 5
  • 15
-2
votes
1 answer

Mechanism for verifying binary hash

I have a binary hash: var hash = PasswordHash.ArgonHashBinary(Encoding.ASCII.GetBytes(passwd), salt,StrengthArgon.Interactive) Please tell me how can I convert byte array returned by method ArgonHashBinary() so that I can verify my password using…
Apprentice
  • 21
  • 4
1
2