You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
304 B

console.log('app.js');
var app = angular.module('cipher', []);
app.controller('MainController', [function() {
this.message = "hi"
this.encrypt = function() {
this.encrypted = caesarShift(this.original, 12)
}
this.decrypt = function() {
this.decrypted = caesarShift(this.input, -12)
}
}]);