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
import org.bouncycastle.asn1.ASN1Encodable; | |
import org.bouncycastle.asn1.DERSequence; | |
import org.bouncycastle.asn1.x500.X500Name; | |
import org.bouncycastle.asn1.x509.BasicConstraints; | |
import org.bouncycastle.asn1.x509.Extension; | |
import org.bouncycastle.asn1.x509.GeneralName; | |
import org.bouncycastle.asn1.x509.KeyUsage; | |
import org.bouncycastle.cert.X509CertificateHolder; | |
import org.bouncycastle.cert.X509v3CertificateBuilder; | |
import org.bouncycastle.cert.jcajce.JcaX509CertificateConverter; |
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
function get_bits_system_architecture() { | |
var _to_check = []; | |
if (window.navigator.cpuClass) { | |
_to_check.push((window.navigator.cpuClass + '').toLowerCase()); | |
} | |
if (window.navigator.platform) { | |
_to_check.push((window.navigator.platform + '').toLowerCase()); | |
} |
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
* https://www.javadoc.io/doc/org.python/jython/2.7-b3/org/python/core/PyByteArray.html | |
* https://www.programiz.com/python-programming/methods/built-in/bytearray | |
* https://stackoverflow.com/questions/11727031/create-byte-in-jython | |
* https://flylib.com/books/en/1.212.1.101/1/ |
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
/************************************************************* | |
* Gmail Huge Attachments 0.1 - Francisco Ernesto Teixeira | |
* forked from Gmail Size 2.1 - Digital Inspiration | |
* ----------------------------------------------------------- | |
* | |
* Tutorial : https://francisco.pro | |
* Contact : [email protected] | |
* | |
* Original | |
* Tutorial : http://labnol.org/?p=21191 |