Field Name | Field Type |
---|---|
id | I |
uuid | Ljava/util/UUID; |
x | D |
y | D |
z | D |
xa | I |
Disclaimer: everything that follows is a personal opinion - not an assertion of fact.
NIST has created Federal Information Processing Standard (FIPS) 140-2: Security Requirements for Cryptographic Modules. FIPS requirements are mandatory for Federal Government agencies, as prescribed by FISMA law. FIPS-140-2 Annex D covers Approved Key Establishment Techniques. The only FIPS-approved password-based key derivation algorithm is PBKDF2 (NIST SP800-132). Login.gov uses scrypt, which is not FIPS-approved. The FIPS-approved key-derivation algorithms are mostly covered by NIST SP800-108. Login.gov uses several custom approaches for key derivation, none of which are FIPS-approved.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package kr.rvs.instrumentation; | |
import java.io.ByteArrayOutputStream; | |
import java.io.InputStream; | |
import java.lang.instrument.ClassDefinition; | |
import java.lang.instrument.Instrumentation; | |
/** | |
* Created by Junhyeong Lim on 2017-02-02. | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package me.rbrickis.testing; | |
import java.lang.reflect.Field; | |
import java.lang.reflect.InvocationTargetException; | |
import java.lang.reflect.Method; | |
import java.util.List; | |
import org.bukkit.Bukkit; | |
import org.bukkit.Location; | |
import org.bukkit.entity.Entity; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Created by Ryan on 11/2/2014 | |
* <p/> | |
* Project: Phenomenon | |
* | |
* About: Various reflection utilities created by @rbrick(Ryan) | |
*/ | |
public class Reflection { | |
private static String VERSION = Bukkit.getServer().getClass().getPackage().getName().split("\\.")[3]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Created by Ryan on 11/2/2014 | |
* <p/> | |
* Project: NameTahg | |
* | |
* About: This is a minified version of NameTahg. This contains everything needed in one class. | |
* You can then shade this class into your plugin for any of your needs with ease. | |
* Enjoy, rbrick :) | |
*/ | |
public class NameTahgMinified { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"team_claims": [ | |
{ | |
"owning_team": "Xetha", | |
"maxX": 10, | |
"minX": -10, | |
"maxY": 256, | |
"minY": 0, | |
"maxZ": 10, | |
"minZ": -10, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html><head></head><body><form name="Calc"> | |
<table border="8"> | |
<tbody><tr> | |
<td> | |
<input type="text" name="Input" size="20"> | |
<br> | |
</td> | |
</tr> | |
<tr> | |
<td> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
from __future__ import print_function | |
import sys | |
import numpy as np | |
from scipy.ndimage.measurements import center_of_mass | |
dxy = 0.1 |
NewerOlder