ソフトウェアトークン生成器による2段階認証(Two-factor authentication)の仕様と実装について。
Googleではこの認証機能を 2-Step Verification と呼んでいる。一般的には Two-factor authentication、あるいは Multi-factor authentication と呼ばれている様子。
和訳の定義はまちまちだが、
| #:kivy 1.8.0 | |
| <Root>: | |
| orientation: "vertical" | |
| Button: | |
| text: "Start GTK thread" if not app.gtk_started else "Stop GTK thread" | |
| on_release: app.start_gtk_thread() |
| #! /usr/bin/env python | |
| """ | |
| Author: Jeremy M. Stober | |
| Program: SOFTMAX.PY | |
| Date: Wednesday, February 29 2012 | |
| Description: Simple softmax function. | |
| """ | |
| import numpy as np | |
| npa = np.array |
| 更新: | 2013-12-27 |
|---|---|
| バージョン: | 1.5.1 |
| 作者: | @voluntas |
| URL: | http://voluntas.github.io/ |
| import argparse | |
| import numpy as np | |
| from chainer import Variable, FunctionSet, optimizers, cuda | |
| import chainer.functions as F | |
| import cv2 | |
| import random | |
| import cPickle as pickle | |
| import sys | |
| class ConvolutionalAutoencoder(FunctionSet): |