AngularJS service for UTF-8 and Base64 and Base64url Javascript Encoding
angular-utf8-base64 is based on Really fast Javascript Base64 encoder/decoder with utf-8 support. I just wrapped it as AngularJS service.
There is another AngularJS service for Base64 encoding available. But it doesn't support UTF-8.
bower install angular-utf8-base64
<script src="bower_components/angular-utf8-base64/angular-utf8-base64.min.js"></script>
angular
.module('myApp', ['ab-base64'])
.controller('myController', [
'$scope','base64',
function($scope,base64) {
$scope.encoded = base64.encode('a string');
$scope.decoded = base64.decode('YSBzdHJpbmc=');
}]);
Commonly used for supporting JWS and JWT encodings, base64url encoding creates a URL safe output.
angular
.module('myApp', ['ab-base64'])
.controller('myController', [
'$scope','base64',
function($scope,base64) {
$scope.encoded = base64.urlencode('a string');
$scope.decoded = base64.urldecode('YSBzdHJpbmc');
}]);